diff options
author | Graham Higgins <gjh@bel-epa.com> | 2012-01-16 14:44:40 +0000 |
---|---|---|
committer | Graham Higgins <gjh@bel-epa.com> | 2012-01-16 14:44:40 +0000 |
commit | 9c4ce29a32fa9603e9c1d82b9f1416f31a5e814b (patch) | |
tree | de5a5f5e934964ca901a4c30d0dd1cf8d892142b /rdflib/plugins/serializers/xmlwriter.py | |
parent | 4719386137b73442a67dc99b4788b5c51672bccf (diff) | |
download | rdflib-9c4ce29a32fa9603e9c1d82b9f1416f31a5e814b.tar.gz |
Uncomment __all__, tests do all pass
Diffstat (limited to 'rdflib/plugins/serializers/xmlwriter.py')
-rw-r--r-- | rdflib/plugins/serializers/xmlwriter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rdflib/plugins/serializers/xmlwriter.py b/rdflib/plugins/serializers/xmlwriter.py index dfe65eb4..d36af4b2 100644 --- a/rdflib/plugins/serializers/xmlwriter.py +++ b/rdflib/plugins/serializers/xmlwriter.py @@ -1,7 +1,7 @@ import codecs from xml.sax.saxutils import quoteattr, escape -# __all__ = ['XMLWriter'] +__all__ = ['XMLWriter'] class XMLWriter(object): def __init__(self, stream, namespace_manager, encoding=None, decl=1, extra_ns={}): |