mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
refactor.
This commit is contained in:
parent
8a2e4d7a10
commit
fc926bb993
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ class KpatXmlEmitter:
|
|||
|
||||
def _genericTag(self, suf, name, attrs):
|
||||
self._ind_out(
|
||||
"<" + name + "".join([" "+x[0]+"=\""+x[1]+"\"" for x in attrs])
|
||||
"<" + name + "".join([" "+k+"=\""+v+"\"" for k, v in attrs])
|
||||
+ suf + ">\n")
|
||||
|
||||
def writeEmptyTag(self, name, attrs):
|
||||
|
|
Loading…
Add table
Reference in a new issue