diff options
author | nilshah98 | 2019-06-24 16:12:13 +0530 |
---|---|---|
committer | nilshah98 | 2019-06-24 16:12:13 +0530 |
commit | 25c2c25c3db4c053cabd9be859051337dce5c369 (patch) | |
tree | 64c7091bb4bf72abf4a27d135e40481ba1503a27 | |
parent | cabc5063df1f1d02e801de838d316d05bd58e424 (diff) | |
download | eSim-25c2c25c3db4c053cabd9be859051337dce5c369.tar.gz eSim-25c2c25c3db4c053cabd9be859051337dce5c369.tar.bz2 eSim-25c2c25c3db4c053cabd9be859051337dce5c369.zip |
new lines added
-rw-r--r-- | src/modelEditor/ModelEditor.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/modelEditor/ModelEditor.py b/src/modelEditor/ModelEditor.py index f72a3bf2..c22cee5c 100644 --- a/src/modelEditor/ModelEditor.py +++ b/src/modelEditor/ModelEditor.py @@ -495,7 +495,7 @@ class ModelEditorclass(QtGui.QWidget): '(') for tags, text in list(self.modeldict.items()): txtfile.write(' ' + tags + '=' + text) - txtfile.write(' )') + txtfile.write(' )\n') tree.write(self.modelname + ".xml") self.obj_appconfig.print_info( 'New ' + @@ -516,7 +516,7 @@ class ModelEditorclass(QtGui.QWidget): '(') for tags, text in list(self.modeldict.items()): txtfile.write(' ' + tags + '=' + text) - txtfile.write(' )') + txtfile.write(' )\n') tree.write(self.modelname + ".xml") self.obj_appconfig.print_info( 'New ' + @@ -537,7 +537,7 @@ class ModelEditorclass(QtGui.QWidget): '(') for tags, text in list(self.modeldict.items()): txtfile.write(' ' + tags + '=' + text) - txtfile.write(' )') + txtfile.write(' )\n') tree.write(self.modelname + ".xml") self.obj_appconfig.print_info( 'New ' + @@ -558,7 +558,7 @@ class ModelEditorclass(QtGui.QWidget): '(') for tags, text in list(self.modeldict.items()): txtfile.write(' ' + tags + '=' + text) - txtfile.write(' )') + txtfile.write(' )\n') tree.write(self.modelname + ".xml") self.obj_appconfig.print_info( 'New ' + @@ -579,7 +579,7 @@ class ModelEditorclass(QtGui.QWidget): '(') for tags, text in list(self.modeldict.items()): txtfile.write(' ' + tags + '=' + text) - txtfile.write(' )') + txtfile.write(' )\n') tree.write(self.modelname + ".xml") self.obj_appconfig.print_info( 'New ' + @@ -600,7 +600,7 @@ class ModelEditorclass(QtGui.QWidget): '(') for tags, text in list(self.modeldict.items()): txtfile.write(' ' + tags + '=' + text) - txtfile.write(' )') + txtfile.write(' )\n') tree.write(self.modelname + ".xml") self.obj_appconfig.print_info( 'New ' + @@ -648,7 +648,7 @@ class ModelEditorclass(QtGui.QWidget): '(') for tags, text in list(self.modeldict.items()): libfile.write(' ' + tags + '=' + text) - libfile.write(' )') + libfile.write(' )\n') libfile.close() root = ET.Element("library") |