view roundup/anypy/xmlrpc_.py @ 5994:0e04fcdd1ff2

issue2551077-"jinja2" template: cannot login if German language used. Fixed three places where the value of a hidden @action input field was translated.They shouldn't be.
author John Rouillard <rouilj@ieee.org>
date Mon, 23 Dec 2019 17:54:01 -0500
parents db10c0a1f338
children 99d4fb22aa65
line wrap: on
line source

try:
    # Python 3+.
    from xmlrpc import client, server
    server.SimpleXMLRPCDispatcher
except (ImportError, AttributeError):
    # Python 2.
    import xmlrpclib as client
    import SimpleXMLRPCServer as server

Roundup Issue Tracker: http://roundup-tracker.org/