diff options
Diffstat (limited to 'src/projManagement/openProject.py')
-rw-r--r-- | src/projManagement/openProject.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/projManagement/openProject.py b/src/projManagement/openProject.py index 6972b1ed..3bbdfc37 100644 --- a/src/projManagement/openProject.py +++ b/src/projManagement/openProject.py @@ -23,19 +23,18 @@ from configuration.Appconfig import Appconfig -class ProjectInfo: +class ProjectInfo(QtGui.QWidget): """ Class ProjectInfo accept model information from user """ def __init__(self): - pass + super(ProjectInfo, self).__init__() + self.obj_validation = Validation() def body(self): self.proj_directory = QtGui.QFileDialog.getExistingDirectory() - self.obj_validation = Validation() - - + if self.obj_validation.validateOpenproj(self.proj_directory) == True: print "Pass open project test" self.obj_Appconfig = Appconfig() |