mirror of
https://github.com/certbot/certbot.git
synced 2026-08-02 00:22:28 +02:00
fix syntax error
This commit is contained in:
+1
-1
@@ -489,7 +489,7 @@ class Reverter(object):
|
|||||||
|
|
||||||
if not os.path.exists(changes_since_path):
|
if not os.path.exists(changes_since_path):
|
||||||
logger.info("Rollback checkpoint is empty (no changes made?)")
|
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")
|
f.write("No changes\n")
|
||||||
|
|
||||||
# Add title to self.config.in_progress_dir CHANGES_SINCE
|
# Add title to self.config.in_progress_dir CHANGES_SINCE
|
||||||
|
|||||||
Reference in New Issue
Block a user