Reverted change for sifio.py

This commit is contained in:
Roy-043
2023-08-09 23:07:20 +02:00
committed by wwmayer
parent 3e2c766800
commit aebc302937

View File

@@ -305,7 +305,7 @@ class _Writer(object):
self._stream.write(_SECTION_DELIM)
def _writeSectionBody(self, s):
for key in sorted(s): # def keys() from class sifio.Section is called
for key in sorted(s.keys()): # def keys() from class sifio.Section is called
self._writeAttribute(key, s[key])
def _writeAttribute(self, key, data):