eric6/Plugins/VcsPlugins/vcsGit/GitCopyDialog.py

changeset 7257
c4d0cac9b5c9
parent 7229
53054eb5b15a
child 7360
9190402e4505
equal deleted inserted replaced
7256:4ef3b78ebb4e 7257:c4d0cac9b5c9
67 """ 67 """
68 target = self.targetEdit.text() 68 target = self.targetEdit.text()
69 if not os.path.isabs(target): 69 if not os.path.isabs(target):
70 sourceDir = os.path.dirname(self.sourceEdit.text()) 70 sourceDir = os.path.dirname(self.sourceEdit.text())
71 target = os.path.join(sourceDir, target) 71 target = os.path.join(sourceDir, target)
72 return Utilities.toNativeSeparators(target), \ 72 return (
73 Utilities.toNativeSeparators(target),
73 self.forceCheckBox.isChecked() 74 self.forceCheckBox.isChecked()
75 )
74 76
75 @pyqtSlot() 77 @pyqtSlot()
76 def on_dirButton_clicked(self): 78 def on_dirButton_clicked(self):
77 """ 79 """
78 Private slot to handle the button press for selecting the target via a 80 Private slot to handle the button press for selecting the target via a

eric ide

mercurial