XMLStream: Break a long line to make it more readable.

This commit is contained in:
Emmanuel Gil Peyrot 2016-12-29 18:41:09 +01:00
parent c372f3071a
commit df4012e66d

View file

@ -364,7 +364,9 @@ class XMLStream(asyncio.BaseProtocol):
if self.xml_depth == 0: if self.xml_depth == 0:
# We have received the start of the root element. # We have received the start of the root element.
self.xml_root = xml self.xml_root = xml
log.debug('RECV: %s', highlight(tostring(self.xml_root, xmlns=self.default_ns, log.debug('RECV: %s',
highlight(tostring(self.xml_root,
xmlns=self.default_ns,
stream=self, stream=self,
top_level=True, top_level=True,
open_only=True))) open_only=True)))