We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6341451 commit 4cc9ff5Copy full SHA for 4cc9ff5
plasma/conf.py
@@ -2,10 +2,10 @@
2
import os
3
import errno
4
5
-if os.path.exists('./conf.yaml'):
6
- conf = parameters('./conf.yaml')
7
-elif os.path.exists(os.path.join(os.path.abspath(os.path.dirname(__file__)), '../examples/conf.yaml')):
+if os.path.exists(os.path.join(os.path.abspath(os.path.dirname(__file__)), '../examples/conf.yaml')):
8
conf = parameters(os.path.join(os.path.abspath(os.path.dirname(__file__)), '../examples/conf.yaml'))
+elif os.path.exists('./conf.yaml'):
+ conf = parameters('./conf.yaml')
9
elif os.path.exists('./examples/conf.yaml'):
10
conf = parameters('./examples/conf.yaml')
11
else:
0 commit comments