summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Coldrick <adam.coldrick@codethink.co.uk>2014-03-12 10:21:29 +0000
committerAdam Coldrick <adam.coldrick@codethink.co.uk>2014-03-12 10:21:29 +0000
commit0a0b829261ec572fa8c254fa625b38b7d504a60d (patch)
treeb58d5e510fbc06afc0cd991683724389407d97a4
parentc2c85bbabb632b678b0170375b8d4468af76603c (diff)
downloadlorry-controller-0a0b829261ec572fa8c254fa625b38b7d504a60d.tar.gz
Fix a typo bug that I somehow didn't notice when merging.
-rw-r--r--lorrycontroller/confparser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lorrycontroller/confparser.py b/lorrycontroller/confparser.py
index 7dae82e..e8b78d8 100644
--- a/lorrycontroller/confparser.py
+++ b/lorrycontroller/confparser.py
@@ -317,7 +317,7 @@ class LorryControllerConfig(object):
command]
cmdargs.extend(args)
# run the command
- exit, out, err = self.app.maybe_runcmd(cmd_args, dry=dry)
+ exit, out, err = self.app.maybe_runcmd(cmdargs, dry=dry)
else:
# construct a url which will return the command output
query_string = '%s %s' % (command, ' '.join(args))