src/eric7/Plugins/VcsPlugins/vcsPySvn/SvnUrlSelectionDialog.py

branch
eric7
changeset 9473
3f23dbf37dbe
parent 9413
80c06d472826
child 9624
b47dfa7a137d
equal deleted inserted replaced
9472:5798ee4a8807 9473:3f23dbf37dbe
7 Module implementing a dialog to enter the URLs for the svn diff command. 7 Module implementing a dialog to enter the URLs for the svn diff command.
8 """ 8 """
9 9
10 import re 10 import re
11 11
12 import pysvn
13
12 from PyQt6.QtCore import pyqtSlot 14 from PyQt6.QtCore import pyqtSlot
13 from PyQt6.QtWidgets import QDialog 15 from PyQt6.QtWidgets import QDialog
14 16
17 from eric7 import Utilities
18 from eric7.EricWidgets import EricMessageBox
15 from eric7.EricWidgets.EricApplication import ericApp 19 from eric7.EricWidgets.EricApplication import ericApp
16 from eric7.EricWidgets import EricMessageBox
17
18 import pysvn
19 20
20 from .Ui_SvnUrlSelectionDialog import Ui_SvnUrlSelectionDialog 21 from .Ui_SvnUrlSelectionDialog import Ui_SvnUrlSelectionDialog
21
22 from eric7 import Utilities
23 22
24 23
25 class SvnUrlSelectionDialog(QDialog, Ui_SvnUrlSelectionDialog): 24 class SvnUrlSelectionDialog(QDialog, Ui_SvnUrlSelectionDialog):
26 """ 25 """
27 Class implementing a dialog to enter the URLs for the svn diff command. 26 Class implementing a dialog to enter the URLs for the svn diff command.

eric ide

mercurial