mirror of https://github.com/morpheus65535/bazarr
13 lines
311 B
Python
13 lines
311 B
Python
|
from __future__ import absolute_import
|
||
|
|
||
|
from future.utils import PY3
|
||
|
|
||
|
if PY3:
|
||
|
from tkinter.dialog import *
|
||
|
else:
|
||
|
try:
|
||
|
from Dialog import *
|
||
|
except ImportError:
|
||
|
raise ImportError('The Dialog module is missing. Does your Py2 '
|
||
|
'installation include tkinter?')
|