From bc1d0421b9d6623f9a18ff28077e005d85d3c358 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Sat, 14 Feb 2015 20:10:52 -0500 Subject: [PATCH] (trac) Fix misquote of "@" character. --- bugwarrior/services/trac.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bugwarrior/services/trac.py b/bugwarrior/services/trac.py index 5f518dd62..262e94b4e 100644 --- a/bugwarrior/services/trac.py +++ b/bugwarrior/services/trac.py @@ -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):