summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2011-10-29 17:20:18 +0200
committerFlorent Le Coz <louiz@louiz.org>2011-10-29 17:20:18 +0200
commit21f0c8f3f348ca515b81208c73704d5fd7b10328 (patch)
treeb078d74474a2f4d24764cc2e5f1b03d48f98ad3d /src
parentdb1e84d34e910812d494673a1d78d85f38e2b725 (diff)
downloadpoezio-21f0c8f3f348ca515b81208c73704d5fd7b10328.tar.gz
poezio-21f0c8f3f348ca515b81208c73704d5fd7b10328.tar.bz2
poezio-21f0c8f3f348ca515b81208c73704d5fd7b10328.tar.xz
poezio-21f0c8f3f348ca515b81208c73704d5fd7b10328.zip
Fix the url matching in the link plugin
Diffstat (limited to 'src')
-rw-r--r--src/core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.py b/src/core.py
index 1fb06b38..88a726ea 100644
--- a/src/core.py
+++ b/src/core.py
@@ -1730,7 +1730,7 @@ class Core(object):
try:
self.remote_fifo.write(command)
except (IOError) as e:
- self.information('Could not execute [%s]: %s' % (command, e,), 'Error')
+ self.information('Could not execute [%s]: %s' % (command.strip(), e,), 'Error')
self.remote_fifo = None
else:
pass