Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/shell.py
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-12-28 16:44:06 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-12-28 16:44:06 (GMT)
commit08c27487173faf6a86b5fe20e6b545033b6d1638 (patch)
tree6b412c3c7bd0f7d72ad3c5d20221b740778c63bd /devbot/shell.py
parent542477741abe0135c652a78911a0eb9aec9b1a19 (diff)
Rework initialization
To avoid duplicatin environ setup calls.
Diffstat (limited to 'devbot/shell.py')
-rw-r--r--devbot/shell.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/devbot/shell.py b/devbot/shell.py
index be2730d..0b00c95 100644
--- a/devbot/shell.py
+++ b/devbot/shell.py
@@ -2,11 +2,7 @@
import os
-from devbot import environ
-
def start(rcfile):
- environ.setup()
-
bash_path = "/bin/bash"
os.execlp(bash_path, bash_path, "--rcfile", rcfile)