Fix the fix for python 2.5

This commit is contained in:
Dan Williams 2007-02-03 14:41:31 -05:00
parent 63b2c74f90
commit c07dcbb28b

View File

@ -158,7 +158,7 @@ class GlibXMLRPCTransport(xmlrpclib.Transport):
# @param host Target host.
# @return A connection handle.
def __init__(self):
def __init__(self, use_datetime=0):
if sys.version_info[:3] >= (2, 5, 0):
xmlrpclib.Transport.__init__(self, use_datetime)