9 |
9 |
10 from __future__ import unicode_literals |
10 from __future__ import unicode_literals |
11 |
11 |
12 import glob |
12 import glob |
13 import os.path |
13 import os.path |
14 try: # Py3 |
14 from itertools import zip_longest |
15 from itertools import zip_longest |
|
16 except ImportError: |
|
17 from itertools import izip_longest as zip_longest # __IGNORE_WARNING__ |
|
18 |
15 |
19 from PyQt5.QtWidgets import QApplication, QGraphicsTextItem |
16 from PyQt5.QtWidgets import QApplication, QGraphicsTextItem |
20 |
17 |
21 from E5Gui.E5ProgressDialog import E5ProgressDialog |
18 from E5Gui.E5ProgressDialog import E5ProgressDialog |
22 |
19 |