Skip to content

Commit 5848b00

Browse files
committed
update_ini: remove warning if no changes in HAL files
1 parent 96ac9d7 commit 5848b00

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

src/emc/ini/update_ini.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -675,10 +675,7 @@ def ini_preamble(version):
675675
'halui.spindle.override.value' : 'halui.spindle.0.override.value'
676676
})
677677

678-
if subs == {}:
679-
print("""This file does not need converting, and furthermore execution
680-
should never have reached this spot""")
681-
else:
678+
if subs:
682679
for halfile in halpaths:
683680
halstring = open(halfile,'r').read()
684681
for sub in subs:

0 commit comments

Comments
 (0)