summaryrefslogtreecommitdiff
path: root/src/kicadtoNgspice/Convert.py
diff options
context:
space:
mode:
authorrahul2019-11-18 16:04:22 +0530
committerrahul2019-11-18 16:04:22 +0530
commitf356a2c8966b92b653f3df519560227ca6c0f059 (patch)
tree24905737e5954678218872b33c0650a84ffe6d9d /src/kicadtoNgspice/Convert.py
parent1167495ccdd931639faac1be6f4ccee29fe2b47c (diff)
downloadeSim-f356a2c8966b92b653f3df519560227ca6c0f059.tar.gz
eSim-f356a2c8966b92b653f3df519560227ca6c0f059.tar.bz2
eSim-f356a2c8966b92b653f3df519560227ca6c0f059.zip
removed debuggers
Diffstat (limited to 'src/kicadtoNgspice/Convert.py')
-rw-r--r--src/kicadtoNgspice/Convert.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/kicadtoNgspice/Convert.py b/src/kicadtoNgspice/Convert.py
index f02435d2..f3749cab 100644
--- a/src/kicadtoNgspice/Convert.py
+++ b/src/kicadtoNgspice/Convert.py
@@ -321,11 +321,11 @@ class Convert:
for eachline in schematicInfo:
words = eachline.split()
if words[0] in deviceLibList:
- print "Found Library line"
+ # print "Found Library line"
index = schematicInfo.index(eachline)
completeLibPath = deviceLibList[words[0]]
(libpath,libname) = os.path.split(completeLibPath)
- print "Library Path :",libpath
+ # print "Library Path :",libpath
#Copying library from devicemodelLibrary to Project Path
#Special case for MOSFET
if eachline[0] == 'm':
@@ -401,11 +401,11 @@ class Convert:
for eachline in schematicInfo:
words = eachline.split()
if words[0] in subList:
- print "Found Subcircuit line"
+ # print "Found Subcircuit line"
index = schematicInfo.index(eachline)
completeSubPath = subList[words[0]]
(subpath,subname) = os.path.split(completeSubPath)
- print "Library Path :",subpath
+ # print "Library Path :",subpath
#Copying library from devicemodelLibrary to Project Path
#Replace last word with library name
@@ -415,7 +415,7 @@ class Convert:
src = completeSubPath
dst = projpath
- print os.listdir(src)
+ # print os.listdir(src)
for files in os.listdir(src):
if os.path.isfile(os.path.join(src,files)):
if files != "analysis":