# HG changeset patch # User Ethan Blanton # Date 1180195547 0 # Node ID 3c8ccbc4a667757738f6c9e13bd2352180351898 # Parent 8c056932bcc2bd2078286caa250f59131ec66bbb A conditional in purple_remote was missing a trailing colon. Fixes #1300 diff -r 8c056932bcc2 -r 3c8ccbc4a667 libpurple/purple-remote --- 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"