##// END OF EJS Templates
kallithea-api: add trailing newline when writing config file
Mads Kiilerich -
r4885:dea513b7 default
parent child Browse files
Show More
@@ -128,6 +128,7 b' class RcConf(object):'
128 128 update = True
129 129 with open(self._conf_name, 'wb') as f:
130 130 json.dump(config, f, indent=4)
131 f.write('\n')
131 132
132 133 if update:
133 134 sys.stdout.write('Updated config in %s\n' % self._conf_name)
General Comments 0
You need to be logged in to leave comments. Login now