mirror of https://github.com/scrapy/scrapy.git
pylinted decorators utils
This commit is contained in:
parent
9f1ed63763
commit
fe4683d637
|
|
@ -95,6 +95,7 @@ class XmlItemExporter(BaseItemExporter):
|
|||
|
||||
def _export_xml_field(self, name, serialized_value):
|
||||
self.xg.startElement(name, {})
|
||||
print '%r %r' % (name, serialized_value), self.encoding
|
||||
self.xg.characters(serialized_value)
|
||||
self.xg.endElement(name)
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,3 @@
|
|||
import sys
|
||||
import warnings
|
||||
from functools import wraps
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue