We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6eaa175 commit 150b389Copy full SHA for 150b389
.travis.yml
@@ -49,6 +49,7 @@ install:
49
- pip install keras
50
- conda install libgcc
51
- export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/travis/miniconda/envs/test-environment/lib
52
+ - export PYTHONPATH=".":$PYTHONPATH
53
54
script:
55
- mkdir ./data
config/__init__.py
@@ -17,7 +17,7 @@ def config_to_dict(section):
17
try:
18
dict[option] = parser.get(section, option)
19
except:
20
- print("exception on %s!" % option)
+ print('Exception on configuration option %s!' % option)
21
dict[option] = None
22
return dict
23
0 commit comments