Skip to content

Commit

Permalink
Catch the right import error
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Harlow committed Nov 13, 2015
1 parent 5564eb8 commit e8146f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kazoo/protocol/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

try:
from time import monotonic as now
except AttributeError:
except ImportError:
from time import time as now

from kazoo.exceptions import (
Expand Down

0 comments on commit e8146f1

Please sign in to comment.