Browse Source

Merge pull request #11769 from neogaston/patch-2

Indentation Error
Poommetee Ketson 8 years ago
parent
commit
3d75b210b5
1 changed files with 4 additions and 4 deletions
  1. 4 4
      SConstruct

+ 4 - 4
SConstruct

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