浏览代码

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))