# HG changeset patch # User Mark Doliner # Date 1180936576 0 # Node ID 3bcdb320e619b6127fef390c8cdf8a6cf77a7013 # Parent a88796a8141388c4bfb1b9787ef53448bec05f68 Fix http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=240589 "If you run "gaim-remote aim:goim?screenname=whatever" then it throws an exception because it looks for a "prpl-oscar" account, but apparently I am signed in with a "prpl-aim" account." diff -r a88796a81413 -r 3bcdb320e619 libpurple/purple-remote --- a/libpurple/purple-remote Mon Jun 04 04:58:44 2007 +0000 +++ b/libpurple/purple-remote Mon Jun 04 05:56:16 2007 +0000 @@ -31,7 +31,7 @@ return result def show_help(): - print """This program uses DBus to communicate with purple. + print """This program uses D-Bus to communicate with purple. Usage: @@ -96,8 +96,6 @@ protocol = match.group(2) if protocol == "xmpp": protocol = "jabber" - if protocol == "aim" or protocol == "icq": - protocol = "oscar" if protocol is not None: protocol = "prpl-" + protocol command = match.group(5)