##// END OF EJS Templates
minor changes and comments added
Miguel Valdez -
r641:ef17427bf2f3
parent child
Show More
@@ -4573,7 +4573,6 class BasicWindow(QMainWindow, Ui_BasicWindow):
4573 4573
4574 4574 def playProject(self, ext=".xml", save=1):
4575 4575
4576 # self.console.clear()
4577 4576 projectObj = self.getSelectedProjectObj()
4578 4577
4579 4578 if not projectObj:
@@ -4603,7 +4602,7 class BasicWindow(QMainWindow, Ui_BasicWindow):
4603 4602
4604 4603 # QObject.connect( self.controllerThread, SIGNAL( "jobFinished( PyQt_PyObject )" ), self.jobFinishedFromThread )
4605 4604 # QObject.connect( self.controllerThread, SIGNAL( "jobStarted( PyQt_PyObject )" ), self.jobStartedFromThread )
4606
4605 self.console.clear()
4607 4606 self.controllerThread.start()
4608 4607 sleep(0.5)
4609 4608 self.__enable = True
@@ -4677,7 +4676,7 class BasicWindow(QMainWindow, Ui_BasicWindow):
4677 4676 filename = os.path.join( str(self.pathWorkSpace), "%s%s" %(str(projectObj.name), '.xml') )
4678 4677
4679 4678 projectObj.writeXml(filename)
4680 self.console.append("Now, you can press Start button")
4679 self.console.append("\nPress Play button to start data processing ...")
4681 4680
4682 4681 self.actionStart.setEnabled(True)
4683 4682 self.actionStarToolbar.setEnabled(True)
@@ -9,7 +9,7 try:
9 9 import paramiko
10 10 import scp
11 11 except:
12 print "You should install paramiko if you will use SSH protocol to upload files to a server"
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 14 import time
15 15
General Comments 0
You need to be logged in to leave comments. Login now