From 9347ac2e7c7d7c0693cd85327297b519196dbb90 Mon Sep 17 00:00:00 2001
From: Fahim
Date: Tue, 1 Mar 2016 17:24:00 +0530
Subject: Remove all unwanted print command
---
src/projManagement/openProject.py | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
(limited to 'src/projManagement/openProject.py')
diff --git a/src/projManagement/openProject.py b/src/projManagement/openProject.py
index c0733058..d980d914 100644
--- a/src/projManagement/openProject.py
+++ b/src/projManagement/openProject.py
@@ -35,11 +35,9 @@ class OpenProjectInfo(QtGui.QWidget):
def body(self):
self.obj_Appconfig = Appconfig()
self.openDir = self.obj_Appconfig.default_workspace["workspace"]
- #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"
- #self.obj_Appconfig = Appconfig()
self.obj_Appconfig.current_project['ProjectName'] = str(self.projDir)
if os.path.isdir(self.projDir):
print "true"
@@ -54,7 +52,6 @@ class OpenProjectInfo(QtGui.QWidget):
return dirs, filelist
else:
- #print "Failed open project test"
self.obj_Appconfig.print_error("The project doesn't contain .proj file. Please select the proper directory else you won't be able to perform any operation")
reply = QtGui.QMessageBox.critical(None, "Error Message",''' Error: The project doesn't contain .proj file.
Please select the proper project directory else you won't be able to perform any operation''',QtGui.QMessageBox.Ok|QtGui.QMessageBox.Cancel)
--
cgit