summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lorrycontroller/givemejob.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lorrycontroller/givemejob.py b/lorrycontroller/givemejob.py
index d5e8f6d..3690b49 100644
--- a/lorrycontroller/givemejob.py
+++ b/lorrycontroller/givemejob.py
@@ -119,7 +119,7 @@ class GiveMeJob(lorrycontroller.LorryControllerRoute):
result = collections.defaultdict(str)
for line in stdout.splitlines():
- m = re.match(r'^([^:])+:\s*(.*)$')
+ m = re.match(r'^([^:])+:\s*(.*)$', line)
if m:
result[m.group(0)] = m.group(1).strip()