Plugins/VcsPlugins/vcsSubversion/SvnCopyDialog.py

branch
Py2 comp.
changeset 3057
10516539f238
parent 2525
8b507a9a2d40
parent 3009
bf5ae5d7477d
child 3145
a9de05d4a22f
diff -r 9986ec0e559a -r 10516539f238 Plugins/VcsPlugins/vcsSubversion/SvnCopyDialog.py
--- a/Plugins/VcsPlugins/vcsSubversion/SvnCopyDialog.py	Tue Oct 15 22:03:54 2013 +0200
+++ b/Plugins/VcsPlugins/vcsSubversion/SvnCopyDialog.py	Fri Oct 18 23:00:41 2013 +0200
@@ -24,7 +24,8 @@
 
 class SvnCopyDialog(QDialog, Ui_SvnCopyDialog):
     """
-    Class implementing a dialog to enter the data for a copy or rename operation.
+    Class implementing a dialog to enter the data for a copy or rename
+    operation.
     """
     def __init__(self, source, parent=None, move=False, force=False):
         """
@@ -65,7 +66,8 @@
         if not os.path.isabs(target):
             sourceDir = os.path.dirname(self.sourceEdit.text())
             target = os.path.join(sourceDir, target)
-        return Utilities.toNativeSeparators(target), self.forceCheckBox.isChecked()
+        return (Utilities.toNativeSeparators(target),
+                self.forceCheckBox.isChecked())
         
     @pyqtSlot()
     def on_dirButton_clicked(self):

eric ide

mercurial