Skip to content

Commit

Permalink
updating comment
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmosquark committed Dec 4, 2016
1 parent 35cc508 commit f0ef4c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/fileutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def make_empty_file(file_path):
# If the file already exists, then this is not a problem
# Otherwise something unexpected went wrong, so reraise the previous exception
if e.errno != errno.EEXIST: raise
# The file was never opened due to errno.EEXIST being true.
# The file was never opened since os.open threw an exception
else:
# No exception, so the file must have been created successfully.
# Finally, close the file.
Expand Down

0 comments on commit f0ef4c2

Please sign in to comment.