mirror of
https://github.com/certbot/certbot.git
synced 2026-06-09 00:32:12 -04:00
fix syntax error
This commit is contained in:
parent
686e60b4bf
commit
46be2df199
1 changed files with 1 additions and 1 deletions
|
|
@ -489,7 +489,7 @@ class Reverter(object):
|
|||
|
||||
if not os.path.exists(changes_since_path):
|
||||
logger.info("Rollback checkpoint is empty (no changes made?)")
|
||||
with open(self.config.changes_since_path) as f:
|
||||
with open(changes_since_path, 'w') as f:
|
||||
f.write("No changes\n")
|
||||
|
||||
# Add title to self.config.in_progress_dir CHANGES_SINCE
|
||||
|
|
|
|||
Loading…
Reference in a new issue