Преглед изворни кода

Indentation Error

TabError: inconsistent use of tabs and spaces in indentation

was fixed
neogaston пре 8 година
родитељ
комит
eaa965d5ef
1 измењених фајлова са 4 додато и 4 уклоњено
  1. 4 4
      SConstruct

+ 4 - 4
SConstruct

@@ -193,11 +193,11 @@ for x in module_list:
     tmppath = "./modules/" + x
     sys.path.append(tmppath)
     try:
-	import config
-	if (not config.is_enabled()):
-	    module_enabled = False
+        import config
+        if (not config.is_enabled()):
+            module_enabled = False
     except:
-	pass
+        pass
     sys.path.remove(tmppath)
     opts.Add(BoolVariable('module_' + x + '_enabled', "Enable module '%s'" % (x, ), module_enabled))