File tree Expand file tree Collapse file tree 1 file changed +2
-9
lines changed
Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Original file line number Diff line number Diff line change 22import os
33import errno
44
5- print ('\n looking for conf file:' )
6- print (__file__ )
7- print (os .path .join (os .path .abspath (os .path .dirname (__file__ )), 'examples/conf.yaml' ))
8- print (os .path .exists (os .path .join (os .path .abspath (
9- os .path .dirname (__file__ )), 'examples/conf.yaml' )))
10-
115conf_file = ''
126if os .path .exists (os .path .join (os .path .abspath (os .path .dirname (__file__ )), '../examples/conf.yaml' )):
137 conf_file = os .path .join (os .path .abspath (
148 os .path .dirname (__file__ )), '../examples/conf.yaml' )
15- elif os .path .exists (os .path .join (os .path .abspath (os .path .dirname (__file__ )), 'examples/conf.yaml' )):
16- conf_file = os .path .join (os .path .abspath (
17- os .path .dirname (__file__ )), 'examples/conf.yaml' )
9+ elif os .path .exists ('../plasma-python/examples/conf.yaml' ):
10+ conf_file = '../plasma-python/examples/conf.yaml'
1811elif os .path .exists ('./conf.yaml' ):
1912 conf_file = './conf.yaml'
2013elif os .path .exists ('./examples/conf.yaml' ):
You can’t perform that action at this time.
0 commit comments