Changeset 1175

Show
Ignore:
Timestamp:
08/21/06 20:09:00 (2 years ago)
Author:
athomas
Message:

XmlRpcPlugin:

Fixes #623.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • xmlrpcplugin/0.10/tracrpc/web_ui.py

    r1157 r1175  
    3030        # Dump RPC functions 
    3131        content_type = req.get_header('Content-Type') 
    32         if content_type is not None or 'text/xml' not in content_type: 
     32        if content_type is None or 'text/xml' not in content_type: 
    3333            namespaces = {} 
    3434            for method in XMLRPCSystem(self.env).all_methods(req):