This commit is contained in:
Kovid Goyal 2018-03-09 18:02:06 +05:30
parent 51b6b325b9
commit 5cc18fdb4b
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -485,5 +485,5 @@ def prepare_config_file_for_editing():
except FileExistsError: except FileExistsError:
pass pass
with open(defconf, 'w') as f: with open(defconf, 'w') as f:
f.write(commented_out_default_config) f.write(commented_out_default_config())
return defconf return defconf