Skip to content

Commit

Permalink
Merge pull request #76 from pkulev/bugfix/fix-import
Browse files Browse the repository at this point in the history
utils: fix wrong exception type
  • Loading branch information
pkulev authored Mar 6, 2018
2 parents 09ec6b0 + 1f47439 commit 6b75bcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xoinvader/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import time
try:
time.perf_counter
except ImportError:
except AttributeError:
time.perf_counter = time.time


Expand Down

0 comments on commit 6b75bcb

Please sign in to comment.