Indentation Error

TabError: inconsistent use of tabs and spaces in indentation

was fixed
This commit is contained in:
neogaston 2017-10-02 00:04:11 -05:00 committed by GitHub
parent 1b358783ce
commit eaa965d5ef

View file

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