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

branch
eric7
changeset 9278
36448ca469c2
parent 9221
bf71ee032bb4
child 9413
80c06d472826
equal deleted inserted replaced
9277:471c5a263d53 9278:36448ca469c2
991 if rx_prot.fullmatch(target) is not None: 991 if rx_prot.fullmatch(target) is not None:
992 target = self.__svnURL(target) 992 target = self.__svnURL(target)
993 log = "Moving {0} to {1}".format(name, target) 993 log = "Moving {0} to {1}".format(name, target)
994 else: 994 else:
995 log = "" 995 log = ""
996 target = target
997 if not noDialog: 996 if not noDialog:
998 dlg = SvnDialog( 997 dlg = SvnDialog(
999 self.tr("Moving {0}").format(name), 998 self.tr("Moving {0}").format(name),
1000 "move{0}{1} {2} {3}".format( 999 "move{0}{1} {2} {3}".format(
1001 force and " --force" or "", 1000 force and " --force" or "",
1923 if bool(rx_prot.fullmatch(target)): 1922 if bool(rx_prot.fullmatch(target)):
1924 target = self.__svnURL(target) 1923 target = self.__svnURL(target)
1925 log = "Copying {0} to {1}".format(name, target) 1924 log = "Copying {0} to {1}".format(name, target)
1926 else: 1925 else:
1927 log = "" 1926 log = ""
1928 target = target
1929 dlg = SvnDialog( 1927 dlg = SvnDialog(
1930 self.tr("Copying {0}").format(name), 1928 self.tr("Copying {0}").format(name),
1931 "copy{0} {1} {2}".format( 1929 "copy{0} {1} {2}".format(
1932 log and (" --message {0}".format(log)) or "", name, target 1930 log and (" --message {0}".format(log)) or "", name, target
1933 ), 1931 ),

eric ide

mercurial