Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/command.py
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-15 18:05:33 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-15 18:05:33 (GMT)
commit4fdccd18214412a288897e934d6583aafbc5fa5d (patch)
tree5ffcb4d5f6739796ae037f9ad0a9c9f0eb91719b /devbot/command.py
parent425ae8a66aac4fe9e8f181e0de4b8bb7d0777087 (diff)
Use the command module
Diffstat (limited to 'devbot/command.py')
-rw-r--r--devbot/command.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/devbot/command.py b/devbot/command.py
index 8da8051..32a5a6a 100644
--- a/devbot/command.py
+++ b/devbot/command.py
@@ -1,6 +1,6 @@
import subprocess
-def run_command(args, test=False):
+def run(args, test=False):
print " ".join(args)
if not test:
subprocess.check_call(args)