diff options
author | Georg Brandl <georg@python.org> | 2015-03-08 16:18:59 +0100 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2015-03-08 16:18:59 +0100 |
commit | e97210e5206f291765591d1fc7b05c77ffd1bc30 (patch) | |
tree | 139e1054ae0b839dbb52455dbb4822929cacc067 /sphinx/writers/xml.py | |
parent | d24107695b8520def566d5098623d76cf507b078 (diff) | |
download | sphinx-git-e97210e5206f291765591d1fc7b05c77ffd1bc30.tar.gz |
writers: pep8 fixes
Diffstat (limited to 'sphinx/writers/xml.py')
-rw-r--r-- | sphinx/writers/xml.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sphinx/writers/xml.py b/sphinx/writers/xml.py index 40d238cea..4d44d7687 100644 --- a/sphinx/writers/xml.py +++ b/sphinx/writers/xml.py @@ -23,8 +23,8 @@ class XMLWriter(BaseXMLWriter): def translate(self, *args, **kwargs): self.document.settings.newlines = \ - self.document.settings.indents = \ - self.builder.env.config.xml_pretty + self.document.settings.indents = \ + self.builder.env.config.xml_pretty self.document.settings.xml_declaration = True self.document.settings.doctype_declaration = True return BaseXMLWriter.translate(self) |