ProjectPyramid/PyramidDialog.py

changeset 106
2086bda4a893
parent 99
d148b68ccc76
child 112
916727bdff4d
diff -r 2a2faf098101 -r 2086bda4a893 ProjectPyramid/PyramidDialog.py
--- a/ProjectPyramid/PyramidDialog.py	Fri Jan 20 19:06:31 2017 +0100
+++ b/ProjectPyramid/PyramidDialog.py	Tue Mar 28 19:30:36 2017 +0200
@@ -268,17 +268,17 @@
         """
         Private slot to send the input to the subversion process.
         """
-        input = self.input.text()
-        input += os.linesep
+        inputTxt = self.input.text()
+        inputTxt += os.linesep
         
         if self.passwordCheckBox.isChecked():
             self.errors.insertPlainText(os.linesep)
             self.errors.ensureCursorVisible()
         else:
-            self.resultbox.insertPlainText(input)
+            self.resultbox.insertPlainText(inputTxt)
             self.resultbox.ensureCursorVisible()
         
-        self.proc.write(input)
+        self.proc.write(inputTxt)
         
         self.passwordCheckBox.setChecked(False)
         self.input.clear()

eric ide

mercurial