Skip to content

Commit

Permalink
fix python2
Browse files Browse the repository at this point in the history
  • Loading branch information
cmlsharp committed Jul 11, 2019
1 parent dd7f753 commit d994aa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion check50.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

try:
from importlib import reload
except AttributeError:
except (ImportError, AttributeError):
from imp import reload

import config
Expand Down

0 comments on commit d994aa7

Please sign in to comment.