Skip to content

Commit

Permalink
Download module fix 🔥
Browse files Browse the repository at this point in the history
  • Loading branch information
kishwarshafin committed Mar 3, 2020
1 parent 0e394e8 commit e2ef298
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,11 @@ matrix:
env: CC_COMPILER=gcc CXX_COMPILER=g++

script:
- apt-get -y install git make gcc g++ autoconf zlib1g-dev libcurl4-openssl-dev libbz2-dev libhdf5-dev
- cmake --version
- $CC_COMPILER -v
- $CXX_COMPILER -v
- python3 --version
- python --version
- make install

env:
global:
Expand Down
2 changes: 1 addition & 1 deletion modules/python/DownloadModel.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def download_models(output_dir):
sys.stderr.write("\n")
sys.stderr.flush()

with open(output_dir+'model_description.csv') as f:
with open(output_dir+'/model_description.csv') as f:
models = [line.rstrip() for line in f]

for model in models:
Expand Down

0 comments on commit e2ef298

Please sign in to comment.