summaryrefslogtreecommitdiff
path: root/src/projManagement/openProject.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/projManagement/openProject.py')
-rw-r--r--src/projManagement/openProject.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/projManagement/openProject.py b/src/projManagement/openProject.py
index 97e851e8..4112810c 100644
--- a/src/projManagement/openProject.py
+++ b/src/projManagement/openProject.py
@@ -25,8 +25,7 @@ from configuration.Appconfig import Appconfig
class OpenProjectInfo(QtGui.QWidget):
"""
- Class ProjectInfo accept model information from user
-
+ This class is called when User click on Open Project Button
"""
def __init__(self):
super(OpenProjectInfo, self).__init__()
@@ -38,13 +37,13 @@ class OpenProjectInfo(QtGui.QWidget):
#print "default workspace is now 1", self.openDir
self.projDir=QtGui.QFileDialog.getExistingDirectory(self,"open",self.openDir)
if self.obj_validation.validateOpenproj(self.projDir) == True:
- print "Pass open project test"
+ #print "Pass open project test"
self.obj_Appconfig = Appconfig()
self.obj_Appconfig.current_project['ProjectName'] = str(self.projDir)
else:
- print "Failed open project test"
+ #print "Failed open project test"
reply = QtGui.QMessageBox.critical(None, "Error Message",'''<b> Error: The project doesn't contain .proj file.</b><br/>
<b>Please select the proper project directory else you won't be able to perform any operation</b>''',QtGui.QMessageBox.Ok|QtGui.QMessageBox.Cancel)
if reply == QtGui.QMessageBox.Ok: