Plugins/VcsPlugins/vcsPySvn/subversion.py

branch
5_4_x
changeset 3599
1a3123f385b6
parent 3160
209a07d7e401
equal deleted inserted replaced
3584:e92f4aa860f6 3599:1a3123f385b6
911 from .SvnCopyDialog import SvnCopyDialog 911 from .SvnCopyDialog import SvnCopyDialog
912 dlg = SvnCopyDialog(name, None, True, "--force" in opts) 912 dlg = SvnCopyDialog(name, None, True, "--force" in opts)
913 accepted = (dlg.exec_() == QDialog.Accepted) 913 accepted = (dlg.exec_() == QDialog.Accepted)
914 if accepted: 914 if accepted:
915 target, force = dlg.getData() 915 target, force = dlg.getData()
916 if not target:
917 return False
916 918
917 if not rx_prot.exactMatch(target): 919 if not rx_prot.exactMatch(target):
918 isDir = os.path.isdir(name) 920 isDir = os.path.isdir(name)
919 else: 921 else:
920 isDir = False 922 isDir = False

eric ide

mercurial