module replace - report changed only if contents is changed
This commit is contained in:
parent
e8b33636ae
commit
a1706e6411
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ def main():
|
|||
mre = re.compile(params['regexp'], re.MULTILINE)
|
||||
result = re.subn(mre, params['replace'], contents, 0)
|
||||
|
||||
if result[1] > 0:
|
||||
if result[1] > 0 and contents != result[0]:
|
||||
msg = '%s replacements made' % result[1]
|
||||
changed = True
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue