Mercurial > p > roundup > code
view roundup/anypy/xmlrpc_.py @ 6676:b336cc98d9d2
Mark strings for password reset and registration for translation
Reported on:
https://sourceforge.net/p/roundup/mailman/message/37652424/
by Thomas Arendsen Hein.
Fixed in actions.py and roundup.pot and .po files updated.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Thu, 12 May 2022 21:29:09 -0400 |
| parents | 99d4fb22aa65 |
| children | 7b33365ccb2a |
line wrap: on
line source
try: # Python 3+. from xmlrpc import client, server server.SimpleXMLRPCDispatcher except (ImportError, AttributeError): # Python 2. import xmlrpclib as client # noqa: F401 import SimpleXMLRPCServer as server
