[fix] clitools runner should work

This commit is contained in:
alban 2020-10-09 18:33:32 +02:00
parent 75b3ae93a2
commit 4faf53168d
2 changed files with 13 additions and 12 deletions

View File

@ -12,6 +12,16 @@ from pathlib import Path
import runner_lib as runner
def action_help():
global bindings
print("\nKey\tAction\n--------------------------------------")
for i in bindings:
print(" {}\t{}".format(bindings[i],i))
print("--------------------------------------\n")
bindings={
"Show playlist" : "l",
"Launch [0-x] cmd" : "0-x",
@ -41,7 +51,7 @@ bindings={
# Main Loop
runner.action_info()
runner.action_help()
action_help()
print("\n\nLoad a playlist? [Y/n]: ")
if "y" == runner.inkey() :
runner.action_loadPlaylist()
@ -100,7 +110,7 @@ while True:
runner.action_killPid()
continue
elif bindings["Help"] == k:
runner.action_help()
action_help()
continue
elif bindings["Information"] == k:
runner.action_info()

View File

@ -178,16 +178,6 @@ def action_listAll():
def action_help():
global bindings
print("\nKey\tAction\n--------------------------------------")
for i in bindings:
print(" {}\t{}".format(bindings[i],i))
print("--------------------------------------\n")
def action_edit():
print("Enter the command number to edit, or 'x' to abort.")
@ -359,6 +349,7 @@ def action_killPid():
def action_quit():
print("Quit [Y/n]?")
global process
quit = inkey()
if quit != "n":
_kill(process)