Skip to content

Commit

Permalink
Make tests compatible with python 2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
corollari committed Jul 14, 2020
1 parent 621db0a commit 6d8c9de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion processGeoIpCsv.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def removeOldData():
try:
os.mkdir(CODE_DIR)
os.remove(PARAMS_FILE)
except (FileExistsError, FileNotFoundError):
except (OSError):
pass

def jsonify(item):
Expand Down

0 comments on commit 6d8c9de

Please sign in to comment.