Skip to content

Commit

Permalink
fix import for Python 3
Browse files Browse the repository at this point in the history
  • Loading branch information
roramirez committed Apr 6, 2020
1 parent 2563763 commit c5af2eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion qpanel/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import six
# In case use Asterisk dont crash with ESL not in system
try:
from .freeswitch import Freeswitch
from qpanel.freeswitch import Freeswitch
except BaseException:
pass

Expand Down
2 changes: 1 addition & 1 deletion qpanel/freeswitch.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


import ESL
import utils
from qpanel import utils

# Default
defaultESLport = 8021
Expand Down

0 comments on commit c5af2eb

Please sign in to comment.