fixed module ordering bug
This commit is contained in:
parent
8aee497225
commit
a253f96259
1 changed files with 1 additions and 0 deletions
1
main.py
1
main.py
|
@ -28,6 +28,7 @@ def create_module_string(pre, prefix, command, post):
|
||||||
|
|
||||||
|
|
||||||
def new_module_thread(alignment, pre, name, prefix, command, post, refresh):
|
def new_module_thread(alignment, pre, name, prefix, command, post, refresh):
|
||||||
|
running_modules_dict[alignment][name] = ""
|
||||||
while True:
|
while True:
|
||||||
module_string = create_module_string(pre, prefix, command, post)
|
module_string = create_module_string(pre, prefix, command, post)
|
||||||
running_modules_dict[alignment][name] = module_string
|
running_modules_dict[alignment][name] = module_string
|
||||||
|
|
Loading…
Reference in a new issue