summaryrefslogtreecommitdiff
path: root/giscanner/xmlwriter.py
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2009-01-03 13:43:07 +0000
committerJürg Billeter <juergbi@src.gnome.org>2009-01-03 13:43:07 +0000
commit00b0ae6bca603adc2c424c9a9384c60c4e4b1ccb (patch)
tree319e50b9ff6f560e8afa881ddfdc4cc810bc4219 /giscanner/xmlwriter.py
parent30182fa9cb9c90a4f663bed37812aae12a8a8279 (diff)
downloadgobject-introspection-00b0ae6bca603adc2c424c9a9384c60c4e4b1ccb.tar.gz
Fix inconsistencies with PEP8
2009-01-03 Jürg Billeter <j@bitron.ch> * giscanner/ast.py: * giscanner/dumper.py: * giscanner/girparser.py: * giscanner/glibtransformer.py: * giscanner/sourcescanner.py: * giscanner/transformer.py: * giscanner/xmlwriter.py: Fix inconsistencies with PEP8 svn path=/trunk/; revision=997
Diffstat (limited to 'giscanner/xmlwriter.py')
-rw-r--r--giscanner/xmlwriter.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/giscanner/xmlwriter.py b/giscanner/xmlwriter.py
index bed3f991..6fd03f44 100644
--- a/giscanner/xmlwriter.py
+++ b/giscanner/xmlwriter.py
@@ -82,7 +82,6 @@ class XMLWriter(object):
self._indent_char = ' '
# Private
-
def _open_tag(self, tag_name, attributes=None):
attrs = collect_attributes(
tag_name, attributes, self._indent,
@@ -94,7 +93,6 @@ class XMLWriter(object):
self.write_line('</%s>' % (tag_name, ))
# Public API
-
def get_xml(self):
return self._data.getvalue()