summaryrefslogtreecommitdiff
path: root/src/core.py
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2011-12-15 20:29:20 +0100
committerFlorent Le Coz <louiz@louiz.org>2012-01-26 10:05:34 +0100
commit3d9193509e44f0767d3b5d0d5f984a90fec572e3 (patch)
treecfeb4424b2a25168dfba66b0b2a9e57fd5ca1a72 /src/core.py
parentfe00f0eb23f492f5c15d3ac843c8ce7158daf174 (diff)
downloadpoezio-3d9193509e44f0767d3b5d0d5f984a90fec572e3.tar.gz
poezio-3d9193509e44f0767d3b5d0d5f984a90fec572e3.tar.bz2
poezio-3d9193509e44f0767d3b5d0d5f984a90fec572e3.tar.xz
poezio-3d9193509e44f0767d3b5d0d5f984a90fec572e3.zip
Make non-remote commands work.
Diffstat (limited to 'src/core.py')
-rw-r--r--src/core.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core.py b/src/core.py
index 15126c08..3bb0436e 100644
--- a/src/core.py
+++ b/src/core.py
@@ -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):
"""