moved lish related info print from bin/linspector to lish

This commit is contained in:
Johannes Findeisen 2013-11-29 00:27:14 +01:00
commit 9fe9f85000
2 changed files with 2 additions and 2 deletions

View file

@ -168,8 +168,6 @@ def main():
jsonrpc.daemon = True jsonrpc.daemon = True
jsonrpc.start() jsonrpc.start()
print("Type \"help\" to view available commands or \"help COMMAND\" to view the commands help")
LishFrontend(interface) LishFrontend(interface)
logger.debug("shutting down scheduler") logger.debug("shutting down scheduler")

View file

@ -48,6 +48,8 @@ class LishFrontend(Frontend):
super(LishFrontend, self) super(LishFrontend, self)
commander = LishCommander(linpsectorInterface) commander = LishCommander(linpsectorInterface)
print("Type \"help\" to view available commands or \"help COMMAND\" to view the commands help")
run = True run = True
while run: while run:
try: try: