10 import re |
10 import re |
11 |
11 |
12 from PyQt6.QtCore import pyqtSlot |
12 from PyQt6.QtCore import pyqtSlot |
13 from PyQt6.QtWidgets import QDialog |
13 from PyQt6.QtWidgets import QDialog |
14 |
14 |
15 from EricWidgets.EricApplication import ericApp |
15 from eric7.EricWidgets.EricApplication import ericApp |
16 from EricWidgets import EricMessageBox |
16 from eric7.EricWidgets import EricMessageBox |
17 |
17 |
18 import pysvn |
18 import pysvn |
19 |
19 |
20 from .Ui_SvnUrlSelectionDialog import Ui_SvnUrlSelectionDialog |
20 from .Ui_SvnUrlSelectionDialog import Ui_SvnUrlSelectionDialog |
21 |
21 |
22 import Utilities |
22 from eric7 import Utilities |
23 |
23 |
24 |
24 |
25 class SvnUrlSelectionDialog(QDialog, Ui_SvnUrlSelectionDialog): |
25 class SvnUrlSelectionDialog(QDialog, Ui_SvnUrlSelectionDialog): |
26 """ |
26 """ |
27 Class implementing a dialog to enter the URLs for the svn diff command. |
27 Class implementing a dialog to enter the URLs for the svn diff command. |