Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
jmwri committed Sep 28, 2016
1 parent cdaac81 commit 8762e73
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion voluptuous/schema_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@

try:
import error as er
from encoding import to_utf8_py2
except ImportError:
from . import error as er
from .encoding import to_utf8_py2
from .encoding import to_utf8_py2

if sys.version_info >= (3,):
long = int
Expand Down

0 comments on commit 8762e73

Please sign in to comment.