5 |
5 |
6 """ |
6 """ |
7 Module implementing a dialog to show the output of the pyinstaller/pyi-makespec |
7 Module implementing a dialog to show the output of the pyinstaller/pyi-makespec |
8 process. |
8 process. |
9 """ |
9 """ |
10 |
|
11 from __future__ import unicode_literals |
|
12 try: |
|
13 str = unicode |
|
14 except NameError: |
|
15 pass |
|
16 |
10 |
17 import os |
11 import os |
18 |
12 |
19 from PyQt5.QtCore import pyqtSlot, QProcess, QTimer |
13 from PyQt5.QtCore import pyqtSlot, QProcess, QTimer |
20 from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QAbstractButton |
14 from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QAbstractButton |