mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-22 08:10:20 -07:00
redhat_subscription: Fix usage of ConfigParser (#54815)
This commit is contained in:
parent
0a0a2e47e0
commit
09f68fc659
2 changed files with 4 additions and 2 deletions
|
@ -260,9 +260,9 @@ class RegistrationBase(object):
|
|||
cfg.read([tmpfile])
|
||||
|
||||
if enabled:
|
||||
cfg.set('main', 'enabled', 1)
|
||||
cfg.set('main', 'enabled', '1')
|
||||
else:
|
||||
cfg.set('main', 'enabled', 0)
|
||||
cfg.set('main', 'enabled', '0')
|
||||
|
||||
fd = open(tmpfile, 'w+')
|
||||
cfg.write(fd)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue