5 |
5 |
6 """ |
6 """ |
7 Module implementing a dialog to edit the commit message of a revision. |
7 Module implementing a dialog to edit the commit message of a revision. |
8 """ |
8 """ |
9 |
9 |
10 from PyQt5.QtCore import pyqtSlot, QCoreApplication |
10 from PyQt6.QtCore import pyqtSlot, QCoreApplication |
11 from PyQt5.QtWidgets import QDialog |
11 from PyQt6.QtWidgets import QDialog |
12 |
12 |
13 from E5Gui import E5MessageBox |
13 from E5Gui import E5MessageBox |
14 |
14 |
15 from Ui_HgHisteditCommitEditor import Ui_HgHisteditCommitEditor |
15 from Ui_HgHisteditCommitEditor import Ui_HgHisteditCommitEditor |
16 |
16 |