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 fb09fa1 commit 7c5d46dCopy full SHA for 7c5d46d
CHANGES.txt
@@ -49,6 +49,8 @@ Fixed:
49
- Updated version of simplified Chinese message file by Cheer Xiao:
50
Corrected some mistakes, added a few more items and did some
51
formating.
52
+- Fix xmlrpc URL parsing so that passwords may contain a ':' character
53
+ (Ralf)
54
55
56
2011-07-15: 1.4.19
roundup/cgi/client.py
@@ -695,7 +695,7 @@ def determine_user(self):
695
except TypeError:
696
# invalid challenge
697
pass
698
- username, password = decoded.split(':')
+ username, password = decoded.split(':', 1)
699
try:
700
login = self.get_action_class('login')(self)
701
login.verifyLogin(username, password)
0 commit comments