aboutsummaryrefslogtreecommitdiff
path: root/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'conf.py')
-rw-r--r--conf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/conf.py b/conf.py
index f8742d6..c2f1902 100644
--- a/conf.py
+++ b/conf.py
@@ -132,7 +132,7 @@ if os.path.isfile('.target'):
target = None
with open('.target', 'r') as f:
target = f.readline().rstrip()
- conffile = os.path.join('targets', target + '.py')
+ conffile = os.path.join('targets', target, 'conf.py')
if os.path.isfile(conffile):
ovconf = importlib.machinery.SourceFileLoader("module.name", conffile).load_module()
for name in dir(ovconf):