Mercurial > pidgin.yaz
changeset 17417:3c8ccbc4a667
A conditional in purple_remote was missing a trailing colon.
Fixes #1300
author | Ethan Blanton <elb@pidgin.im> |
---|---|
date | Sat, 26 May 2007 16:05:47 +0000 |
parents | 8c056932bcc2 |
children | 202f4df12cf4 |
files | libpurple/purple-remote |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/purple-remote Fri May 25 20:06:37 2007 +0000 +++ b/libpurple/purple-remote Sat May 26 16:05:47 2007 +0000 @@ -94,7 +94,7 @@ def execute(uri): match = re.match(urlregexp, uri) protocol = match.group(2) - if protocol == "xmpp" + if protocol == "xmpp": protocol = "jabber" if protocol == "aim" or protocol == "icq": protocol = "oscar"