From 2a13e3dea1d93ed9fc2612379a8c8715df716af6 Mon Sep 17 00:00:00 2001 From: rahulp13 Date: Wed, 11 Mar 2020 16:21:48 +0530 Subject: resolved issue with Source indexing --- src/kicadtoNgspice/KicadtoNgspice.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/kicadtoNgspice/KicadtoNgspice.py b/src/kicadtoNgspice/KicadtoNgspice.py index c1421829..6d654158 100644 --- a/src/kicadtoNgspice/KicadtoNgspice.py +++ b/src/kicadtoNgspice/KicadtoNgspice.py @@ -376,7 +376,8 @@ class MainWindow(QtGui.QWidget): attr_source = child count = 1 - grand_child_count = 1 + grand_child_count = 0 + keys = list(obj_source.entry_var.keys()) for i in store_schematicInfo: tmp_check = 0 @@ -387,9 +388,9 @@ class MainWindow(QtGui.QWidget): tmp_check = 1 for grand_child in child: grand_child.text = \ - str(obj_source.entry_var[grand_child_count].text()) + str(obj_source.entry_var + [keys[grand_child_count]].text()) grand_child_count += 1 - grand_child_count += 1 if tmp_check == 0: words = i.split(' ') wordv = words[0] -- cgit