changeset 17186:ca13853abf0d

mx: fix pylint issues
author Doug Simon <doug.simon@oracle.com>
date Tue, 23 Sep 2014 13:18:14 +0200
parents 7169e42f7e1b
children bd760d193008
files mxtool/mx.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mxtool/mx.py	Tue Sep 23 13:10:25 2014 +0200
+++ b/mxtool/mx.py	Tue Sep 23 13:18:14 2014 +0200
@@ -940,11 +940,11 @@
         dictName = 'extra'
         moduleName = 'suite' + str(suffix)
         modulePath = join(mxDir, moduleName + '.py')
-        
+
         deprecatedModulePath = join(mxDir, 'projects' + str(suffix) + '.py')
         if exists(deprecatedModulePath):
             abort('Please rename ' + deprecatedModulePath + ' to ' + modulePath)
-        
+
         suffix = suffix + 1
 
     return suite, modulePath