|
@@ -92,6 +92,8 @@ def set_conf(name, args):
|
92
|
92
|
config['lodel2.webui']['listen_port'] = str(args.listen_port)
|
93
|
93
|
if args.listen_address is not None:
|
94
|
94
|
config['lodel2.webui']['listen_address'] = str(args.listen_address)
|
|
95
|
+ if args.static_url is not None:
|
|
96
|
+ config['lodel2.webui']['static_url'] = str(args.static_url)
|
95
|
97
|
else: #interface is python
|
96
|
98
|
if args.listen_port is not None or args.listen_address is not None:
|
97
|
99
|
logging.error("Listen port and listen address will not being set. \
|