Skip to content

Commit

Permalink
missing write mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Luca Soldaini committed Sep 3, 2018
1 parent 973a7be commit 8e8b10d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def driver(opts):
open(flag_fp, 'w').close()

flag_fp = os.path.join(opts.destination_path, 'language.flag')
with open(flag_fp) as f:
with open(flag_fp, 'w') as f:
f.write(opts.language)

mrconso_path = os.path.join(opts.umls_installation_path, 'MRCONSO.RRF')
Expand Down

0 comments on commit 8e8b10d

Please sign in to comment.