From a96a6091c87492f56fe3f1169bf7608c2fa3d05c Mon Sep 17 00:00:00 2001 From: Daniel Narvaez Date: Mon, 19 Nov 2012 13:09:30 +0000 Subject: Rename run to run_command --- 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) -- cgit v0.9.1