Make non-remote commands work.
This commit is contained in:
parent
a6b1a1d4d8
commit
0b2037a67c
2 changed files with 8 additions and 2 deletions
|
@ -54,6 +54,7 @@ from keyboard import read_char
|
|||
from theming import get_theme
|
||||
from fifo import Fifo
|
||||
from windows import g_lock
|
||||
from daemon import Executor
|
||||
|
||||
# http://xmpp.org/extensions/xep-0045.html#errorstatus
|
||||
ERROR_AND_STATUS_CODES = {
|
||||
|
@ -2143,7 +2144,8 @@ class Core(object):
|
|||
self.information('Could not execute [%s]: %s' % (command.strip(), e,), 'Error')
|
||||
self.remote_fifo = None
|
||||
else:
|
||||
pass
|
||||
e = Executor(command.strip())
|
||||
e.start()
|
||||
|
||||
def get_conversation_messages(self):
|
||||
"""
|
||||
|
|
|
@ -23,6 +23,10 @@ import sys
|
|||
import threading
|
||||
import subprocess
|
||||
|
||||
import logging
|
||||
|
||||
log = logging.getLogger(__name__)
|
||||
|
||||
class Executor(threading.Thread):
|
||||
"""
|
||||
Just a class to execute commands in a thread.
|
||||
|
@ -35,7 +39,7 @@ class Executor(threading.Thread):
|
|||
self.command = command
|
||||
|
||||
def run(self):
|
||||
print('executing %s' % (self.command.strip(),))
|
||||
log.info('executing %s' % (self.command.strip(),))
|
||||
subprocess.call(self.command.split())
|
||||
|
||||
def main():
|
||||
|
|
Loading…
Reference in a new issue