diff options
author | Fahim | 2016-03-01 17:24:00 +0530 |
---|---|---|
committer | Fahim | 2016-03-01 17:24:00 +0530 |
commit | 9347ac2e7c7d7c0693cd85327297b519196dbb90 (patch) | |
tree | e296f8b423f063bef60cc6115f6d6b3adfe5e3c8 /src/projManagement/Kicad.py | |
parent | 44d403c92bf62a8885e2a2cddf2bd4019c5532b9 (diff) | |
download | eSim-9347ac2e7c7d7c0693cd85327297b519196dbb90.tar.gz eSim-9347ac2e7c7d7c0693cd85327297b519196dbb90.tar.bz2 eSim-9347ac2e7c7d7c0693cd85327297b519196dbb90.zip |
Remove all unwanted print command
Diffstat (limited to 'src/projManagement/Kicad.py')
-rw-r--r-- | src/projManagement/Kicad.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/projManagement/Kicad.py b/src/projManagement/Kicad.py index 41fb8d79..ec3c69da 100644 --- a/src/projManagement/Kicad.py +++ b/src/projManagement/Kicad.py @@ -35,7 +35,7 @@ class Kicad: """ This function create command to open Kicad schematic """ - print "Kicad Schematic is called" + print "Function : Open Kicad Schematic" self.projDir = self.obj_appconfig.current_project["ProjectName"] try: self.obj_appconfig.print_info('Kicad Schematic is called for project ' + self.projDir) @@ -123,7 +123,7 @@ class Kicad: """ This function create command to call kicad to Ngspice converter. """ - print "Open Kicad to Ngspice Conversion" + print "Function: Open Kicad to Ngspice Converter" self.projDir = self.obj_appconfig.current_project["ProjectName"] try: @@ -133,10 +133,8 @@ class Kicad: pass #Validating if current project is available or not if self.obj_validation.validateKicad(self.projDir): - #print "Project is present" #Cheking if project has .cir file or not if self.obj_validation.validateCir(self.projDir): - #print "CIR file present" self.projName = os.path.basename(self.projDir) self.project = os.path.join(self.projDir,self.projName) |