Ticket #623: fix.patch
| File fix.patch, 0.6 kB (added by steffenp@gmx.de, 2 years ago) |
|---|
-
tracrpc/web_ui.py
old new 29 29 30 30 # Dump RPC functions 31 31 content_type = req.get_header('Content-Type') 32 if content_type is notNone or 'text/xml' not in content_type:32 if content_type is None or 'text/xml' not in content_type: 33 33 namespaces = {} 34 34 for method in XMLRPCSystem(self.env).all_methods(req): 35 35 namespace = method.namespace.replace('.', '_')
