summaryrefslogtreecommitdiff
path: root/src/options/mkoptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/options/mkoptions.py')
-rwxr-xr-xsrc/options/mkoptions.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/options/mkoptions.py b/src/options/mkoptions.py
index f3a045e02..8f801466c 100755
--- a/src/options/mkoptions.py
+++ b/src/options/mkoptions.py
@@ -303,10 +303,8 @@ def write_file(directory, name, content):
if os.path.isfile(fname):
with open(fname, 'r') as file:
if content == file.read():
- print('{} is up-to-date'.format(name))
return
with open(fname, 'w') as file:
- print('generated {}'.format(name))
file.write(content)
except IOError:
die("Could not write '{}'".format(fname))
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback