changeset 21959:3adf20a59771

fixed pylint issue
author Doug Simon <doug.simon@oracle.com>
date Sat, 13 Jun 2015 00:59:15 +0200
parents ab37091f0980
children f15b1d92e34b
files mxtool/mx.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mxtool/mx.py	Sat Jun 13 00:58:03 2015 +0200
+++ b/mxtool/mx.py	Sat Jun 13 00:59:15 2015 +0200
@@ -2607,7 +2607,7 @@
             return False
 
         if existed and _opts.backup_modified:
-                shutil.move(path, path + '.orig')
+            shutil.move(path, path + '.orig')
 
         with open(path, 'wb') as f:
             f.write(content)