Skip to content

Commit d472374

Browse files
committed
Print diagnostic msg when nothing has changed
1 parent bacd765 commit d472374

File tree

1 file changed

+1
-0
lines changed
  • ToolsForMaintainersOfTheProjectTemplate/Scintilla_iface_synchronizer

1 file changed

+1
-0
lines changed

ToolsForMaintainersOfTheProjectTemplate/Scintilla_iface_synchronizer/FileGenerator.py

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ def UpdateFile(filename, updated):
2525
with codecs.open(filename, "r", "utf-8") as infile:
2626
original = infile.read()
2727
if updated == original:
28+
print("Nothing new to update:", os.path.basename(filename))
2829
# Same as before so don't write
2930
return
3031
os.unlink(filename)

0 commit comments

Comments
 (0)