Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/devbot/state.py
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-12-15 10:00:41 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-12-15 10:00:41 (GMT)
commite05bf4079ee41ec5a00b985bb2a45d4b2c32a2d5 (patch)
tree99a44d84d17a904ea5aef6049f6ee8f47af124f6 /devbot/state.py
parent6d24aa66ebb5231ead47bf5f0924908b76acd622 (diff)
Separate build and runtime state
Otherwise it becomes problematic to support multiple profiles
Diffstat (limited to 'devbot/state.py')
-rw-r--r--devbot/state.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/devbot/state.py b/devbot/state.py
index 03d249e..258c594 100644
--- a/devbot/state.py
+++ b/devbot/state.py
@@ -6,7 +6,7 @@ from devbot import config
_state = None
def _get_state_path():
- return os.path.join(config.data_home_dir, "state.json")
+ return os.path.join(config.build_state_dir, "state.json")
def _get_state():
global _state