@@ -4573,7 +4573,6 class BasicWindow(QMainWindow, Ui_BasicWindow): | |||||
4573 |
|
4573 | |||
4574 | def playProject(self, ext=".xml", save=1): |
|
4574 | def playProject(self, ext=".xml", save=1): | |
4575 |
|
4575 | |||
4576 | # self.console.clear() |
|
|||
4577 | projectObj = self.getSelectedProjectObj() |
|
4576 | projectObj = self.getSelectedProjectObj() | |
4578 |
|
4577 | |||
4579 | if not projectObj: |
|
4578 | if not projectObj: | |
@@ -4603,7 +4602,7 class BasicWindow(QMainWindow, Ui_BasicWindow): | |||||
4603 |
|
4602 | |||
4604 | # QObject.connect( self.controllerThread, SIGNAL( "jobFinished( PyQt_PyObject )" ), self.jobFinishedFromThread ) |
|
4603 | # QObject.connect( self.controllerThread, SIGNAL( "jobFinished( PyQt_PyObject )" ), self.jobFinishedFromThread ) | |
4605 | # QObject.connect( self.controllerThread, SIGNAL( "jobStarted( PyQt_PyObject )" ), self.jobStartedFromThread ) |
|
4604 | # QObject.connect( self.controllerThread, SIGNAL( "jobStarted( PyQt_PyObject )" ), self.jobStartedFromThread ) | |
4606 |
|
4605 | self.console.clear() | ||
4607 | self.controllerThread.start() |
|
4606 | self.controllerThread.start() | |
4608 | sleep(0.5) |
|
4607 | sleep(0.5) | |
4609 | self.__enable = True |
|
4608 | self.__enable = True | |
@@ -4677,7 +4676,7 class BasicWindow(QMainWindow, Ui_BasicWindow): | |||||
4677 | filename = os.path.join( str(self.pathWorkSpace), "%s%s" %(str(projectObj.name), '.xml') ) |
|
4676 | filename = os.path.join( str(self.pathWorkSpace), "%s%s" %(str(projectObj.name), '.xml') ) | |
4678 |
|
4677 | |||
4679 | projectObj.writeXml(filename) |
|
4678 | projectObj.writeXml(filename) | |
4680 |
self.console.append(" |
|
4679 | self.console.append("\nPress Play button to start data processing ...") | |
4681 |
|
4680 | |||
4682 | self.actionStart.setEnabled(True) |
|
4681 | self.actionStart.setEnabled(True) | |
4683 | self.actionStarToolbar.setEnabled(True) |
|
4682 | self.actionStarToolbar.setEnabled(True) |
@@ -9,7 +9,7 try: | |||||
9 | import paramiko |
|
9 | import paramiko | |
10 | import scp |
|
10 | import scp | |
11 | except: |
|
11 | except: | |
12 |
print "You should install paramiko if you w |
|
12 | print "You should install paramiko and scp libraries \nif you want to use SSH protocol to upload files to the server" | |
13 |
|
13 | |||
14 | import time |
|
14 | import time | |
15 |
|
15 |
General Comments 0
You need to be logged in to leave comments.
Login now