Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xcommands/run-command2
-rw-r--r--devbot/run.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/commands/run-command b/commands/run-command
index b1f76aa..941873e 100755
--- a/commands/run-command
+++ b/commands/run-command
@@ -6,4 +6,4 @@ import sys
from devbot import run
common.setup()
-run.run(sys.argv[1:])
+run.run_command(sys.argv[1:])
diff --git a/devbot/run.py b/devbot/run.py
index c27862f..1bbe695 100644
--- a/devbot/run.py
+++ b/devbot/run.py
@@ -4,6 +4,6 @@ import os
from devbot import environ
-def run(args):
+def run_command(args):
environ.setup()
os.execlp(args[0], *args)