X-Git-Url: http://git.tremily.us/?p=ikiwiki.git;a=blobdiff_plain;f=plugins%2Fproxy.py;h=2b841000ee05331dc99c4ce86568ac229d496541;hp=b4758b06059cc60ca5e33c257ad95cf9c2feea7a;hb=9134145d827c38dc2ee4347e9ee1a83aeedbe187;hpb=fd2ddd9e87f758e5d2987708321ec0c6c0dd6898 diff --git a/plugins/proxy.py b/plugins/proxy.py index b4758b060..2b841000e 100644 --- a/plugins/proxy.py +++ b/plugins/proxy.py @@ -32,7 +32,7 @@ class _IkiWikiExtPluginXMLRPCDispatcher(SimpleXMLRPCDispatcher): def dispatch(self, method, params): return self._dispatch(method, params) -class _XMLStreamParser(object): +class XMLStreamParser(object): def __init__(self): self._parser = xml.parsers.expat.ParserCreate() @@ -95,7 +95,7 @@ class _IkiWikiExtPluginXMLRPCHandler(object): @staticmethod def _read(in_fd): ret = None - parser = _XMLStreamParser() + parser = XMLStreamParser() while True: line = in_fd.readline() if len(line) == 0: