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/kicadtoNgspice/Model.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/kicadtoNgspice/Model.py')
-rw-r--r-- | src/kicadtoNgspice/Model.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/kicadtoNgspice/Model.py b/src/kicadtoNgspice/Model.py index c7ca7b47..25a23d8c 100644 --- a/src/kicadtoNgspice/Model.py +++ b/src/kicadtoNgspice/Model.py @@ -3,7 +3,6 @@ from PyQt4 import QtGui import TrackWidget from xml.etree import ElementTree as ET -import sys import os @@ -21,7 +20,6 @@ class Model(QtGui.QWidget): kicadFile = clarg1 (projpath,filename)=os.path.split(kicadFile) project_name=os.path.basename(projpath) - #print "PROJECT NAME---------",project_name check=1 try: f=open(os.path.join(projpath,project_name+"_Previous_Values.xml"),'r') @@ -32,7 +30,7 @@ class Model(QtGui.QWidget): root=child except: check=0 - print "Empty XML" + print "Model Previous Values XML is Empty" @@ -101,7 +99,7 @@ class Model(QtGui.QWidget): self.nextcount = self.nextcount+1 self.nextrow = self.nextrow+1 self.end= self.nextcount-1 - print "End",self.end + #print "End",self.end modelbox.setLayout(modelgrid) #CSS @@ -134,7 +132,7 @@ class Model(QtGui.QWidget): if check==0: self.obj_trac.modelTrack.append(lst) - print "The tag dictionary : ",tag_dict + #print "The tag dictionary : ",tag_dict |