7 Module implementing a dialog to show the output of the git diff command |
7 Module implementing a dialog to show the output of the git diff command |
8 process. |
8 process. |
9 """ |
9 """ |
10 |
10 |
11 from __future__ import unicode_literals |
11 from __future__ import unicode_literals |
12 try: |
|
13 str = unicode |
|
14 except NameError: |
|
15 pass |
|
16 |
12 |
17 from PyQt5.QtCore import pyqtSlot, QFileInfo, Qt |
13 from PyQt5.QtCore import pyqtSlot, QFileInfo, Qt |
18 from PyQt5.QtGui import QTextCursor, QCursor |
14 from PyQt5.QtGui import QTextCursor, QCursor |
19 from PyQt5.QtWidgets import QWidget, QDialogButtonBox, QApplication |
15 from PyQt5.QtWidgets import QWidget, QDialogButtonBox, QApplication |
20 |
16 |