(self, command)
| 1796 | w.exec_() |
| 1797 | |
| 1798 | def sendCommand(self, command): |
| 1799 | if self.getRunningStatus(): |
| 1800 | if command != "": |
| 1801 | self.serverBridge.sendCommand(command=command) |
| 1802 | self.commandLineEdit.clear() |
| 1803 | self.commandLineEdit.userCommandHistory.append(command) |
| 1804 | self.commandLineEdit.upT = 0 |
| 1805 | else: |
| 1806 | pass |
| 1807 | else: |
| 1808 | self.showServerNotOpenMsg() |
| 1809 | |
| 1810 | def commandLineEditTypeChecker(self): |
| 1811 | if ( |
no test coverage detected