Skip to content

Commit 2121718

Browse files
author
Paul Hallett
committed
Fix Python3 compatibility
1 parent 9a2afe2 commit 2121718

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ develop-eggs
1212
.installed.cfg
1313
scratch
1414
env
15-
venv
15+
venv*
1616

1717
# Installer logs
1818
pip-log.txt

twilio/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
# Backwards compatibility.
77
from .version import __version__, __version_info__
88

9-
from exceptions import TwilioException, TwimlException
9+
from .exceptions import TwilioException, TwimlException
1010

11-
from rest.exceptions import TwilioRestException
11+
from .rest.exceptions import TwilioRestException

0 commit comments

Comments
 (0)