This commit is contained in:
Ciro Santilli 六四事件 法轮功
2018-11-18 00:00:01 +00:00
parent 66439e2a86
commit 66b85743b4
12 changed files with 24 additions and 24 deletions

View File

@@ -84,11 +84,11 @@ if os.path.exists(config_file):
config = imp.load_source('config', config_file)
configs = {x:getattr(config, x) for x in dir(config) if not x.startswith('__')}
class Component:
class BuildComponent:
def __init__(self):
pass
def build(self):
def main(self):
'''
Parse CLI, and to the build based on it.