Skip to content

Commit

Permalink
(trac) Fix misquote of "@" character.
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphbean committed Feb 15, 2015
1 parent 09105b0 commit bc1d042
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bugwarrior/services/trac.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def __init__(self, *args, **kw):
interactive=self.config.interactive
)

auth = urllib.quote_plus('%s:%s@' % (username, password))
auth = urllib.quote_plus('%s:%s' % (username, password)) + '@'
else:
auth = ''
if self.config_get_default('no_xmlrpc', default=False):
Expand Down

0 comments on commit bc1d042

Please sign in to comment.