Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/build.py
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-25 22:11:13 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-25 22:11:13 (GMT)
commit9df732f0d1696875262a9d6b480cf31ac7145113 (patch)
treeeee3e8f233e7e5308fb421bd01be7db8f46e37de /devbot/build.py
parent8e12b81139d65835c6bd9226e9593f1793508df5 (diff)
Replace devbot dir with home
It was weird to store that stuff in the install dir.
Diffstat (limited to 'devbot/build.py')
-rw-r--r--devbot/build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/devbot/build.py b/devbot/build.py
index 65a7ea3..f117667 100644
--- a/devbot/build.py
+++ b/devbot/build.py
@@ -16,7 +16,7 @@ from devbot import environ
state = { "built_modules": {} }
def get_state_path():
- return os.path.join(config.devbot_dir, "state.json")
+ return os.path.join(config.home_dir, "state.json")
def load_state():
global state