summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorneogaston <camiloatorrest@gmail.com>2017-10-02 00:04:11 -0500
committerGitHub <noreply@github.com>2017-10-02 00:04:11 -0500
commiteaa965d5efcd8d46fc019da7f20bba55a3ed59b1 (patch)
tree24da1dee07430cfe1f625f05cacdc9bdba52fbd2 /SConstruct
parent1b358783ce94400e348807c7e7db75233a67cc54 (diff)
Indentation Error
TabError: inconsistent use of tabs and spaces in indentation was fixed
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct8
1 files changed, 4 insertions, 4 deletions
diff --git a/SConstruct b/SConstruct
index 190ef93b9d..705ef4881c 100644
--- a/SConstruct
+++ b/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))