418 self.input.setEchoMode(QLineEdit.Normal) |
418 self.input.setEchoMode(QLineEdit.Normal) |
419 |
419 |
420 @pyqtSlot() |
420 @pyqtSlot() |
421 def on_sendButton_clicked(self): |
421 def on_sendButton_clicked(self): |
422 """ |
422 """ |
423 Private slot to send the input to the merurial process. |
423 Private slot to send the input to the mercurial process. |
424 """ |
424 """ |
425 input = self.input.text() |
425 input = self.input.text() |
426 input += os.linesep |
426 input += os.linesep |
427 |
427 |
428 if self.passwordCheckBox.isChecked(): |
428 if self.passwordCheckBox.isChecked(): |