We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39a3fe5 commit bec3447Copy full SHA for bec3447
dokuwiki.py
@@ -31,7 +31,7 @@ class DokuWiki(object):
31
def __init__(self, url, user, password, **kwargs):
32
"""Initialize the object by connecting to the XMLRPC server."""
33
# Initialize XMLRPC client.
34
- use_datetime = kwargs.get('use_datetime', True)
+ use_datetime = kwargs.pop('use_datetime', True)
35
url = '%s/lib/exe/xmlrpc.php?%s' % (
36
url, urlencode({'u': user, 'p': password}))
37
self.proxy = ServerProxy(url, use_datetime=use_datetime, **kwargs)
0 commit comments