Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-15 18:38:05 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-15 18:38:05 (GMT)
commit1ced35304f1b9d782ac513541aa2287a49b0ad30 (patch)
tree70844b6153885f5fb4ff0093e066b78cbaff4903 /devbot
parent4fdccd18214412a288897e934d6583aafbc5fa5d (diff)
Missing run_command rename
Maybe we need unit tests
Diffstat (limited to 'devbot')
-rw-r--r--devbot/command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/devbot/command.py b/devbot/command.py
index 32a5a6a..9a39a06 100644
--- a/devbot/command.py
+++ b/devbot/command.py
@@ -9,4 +9,4 @@ def run_with_sudo(args, test=False):
args_with_sudo = ["sudo"]
args_with_sudo.extend(args)
- run_command(args_with_sudo, test=test)
+ run(args_with_sudo, test=test)