pylinted decorators utils

This commit is contained in:
Daniel Grana 2009-08-25 16:50:40 -03:00
parent 9f1ed63763
commit fe4683d637
2 changed files with 1 additions and 1 deletions

View File

@ -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)

View File

@ -1,4 +1,3 @@
import sys
import warnings
from functools import wraps