--- a/libpurple/purple-url-handler Tue Oct 04 15:36:18 2016 -0500 +++ b/libpurple/purple-url-handler Tue Oct 04 22:57:40 2016 +0200 @@ -224,11 +224,6 @@ channel = "#" + channel gochat(account, {"server": server, "channel": channel, "password": params.get("key", "")}, params.get("msg")) -def myim(uri): - protocol = "prpl-myspace" - print "TODO: send uri: ", uri - assert False, "Not implemented" - def sip(uri): protocol = "prpl-simple" match = re.match(r"^sip:(.*)", uri) @@ -353,8 +348,6 @@ icq(uri) elif type == "irc": irc(uri) - elif type == "myim": - myim(uri) elif type == "sip": sip(uri) elif type == "xmpp":