10 from PyQt6.QtCore import pyqtSlot |
10 from PyQt6.QtCore import pyqtSlot |
11 from PyQt6.QtWidgets import QDialog, QDialogButtonBox |
11 from PyQt6.QtWidgets import QDialog, QDialogButtonBox |
12 |
12 |
13 from .Ui_HgCommandDialog import Ui_HgCommandDialog |
13 from .Ui_HgCommandDialog import Ui_HgCommandDialog |
14 |
14 |
15 import Utilities |
15 from eric7 import Utilities |
16 |
16 |
17 |
17 |
18 class HgCommandDialog(QDialog, Ui_HgCommandDialog): |
18 class HgCommandDialog(QDialog, Ui_HgCommandDialog): |
19 """ |
19 """ |
20 Class implementing the Mercurial command dialog. |
20 Class implementing the Mercurial command dialog. |