Skip to content

Commit fc0d5e9

Browse files
committed
Update README and setup for version 1.3.3
1 parent 8205330 commit fc0d5e9

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

README.rst

+4
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ API is described `here <http://python-dokuwiki.readthedocs.org/en/latest/>`_.
3131

3232
Release notes
3333
-------------
34+
1.3.3 (2022-06-28)
35+
~~~~~~~~~~~~~~~~~~
36+
* Allow slash character in passwords (`#26
37+
<https://github.com/fmenabe/python-dokuwiki/pull/26>`__)
3438

3539
1.3.2 (2021-12-03)
3640
~~~~~~~~~~~~~~~~~~

dokuwiki.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ def __init__(self, url, user, password, **kwargs):
154154
raise DokuWikiError("invalid url '%s'" % url)
155155

156156
# Set auth string or transport for cookie based authentication.
157-
auth = '{:s}:{:s}@'.format(user, quote(password, safe = ''))
157+
auth = '{:s}:{:s}@'.format(user, quote(password, safe=''))
158158
cookie_auth = kwargs.pop('cookieAuth', False)
159159
if cookie_auth:
160160
auth = ''

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
setuptools.setup(
66
name = 'dokuwiki',
7-
version = '1.3.2',
7+
version = '1.3.3',
88
author = 'François Ménabé',
99
author_email = '[email protected]',
1010
url = 'http://python-dokuwiki.readthedocs.org/en/latest/',

0 commit comments

Comments
 (0)