5089N/A# Fix the shebang line in a couple of scripts to use a specific version of
5089N/A# Python so that the pidgin package can be properly published in Userland
5089N/A# where these things matter.
5089N/A#
5089N/A# This patch will not be sent upstream.
5089N/A
6557N/A--- pidgin-2.11.0/libpurple/purple-remote.orig 2016-08-01 08:32:52.237671346 -0700
6557N/A+++ pidgin-2.11.0/libpurple/purple-remote 2016-08-01 08:33:07.993989713 -0700
5089N/A@@ -1,4 +1,4 @@
5089N/A-#!/usr/bin/env python
5089N/A+#!/usr/bin/python2.7
5089N/A
5089N/A import codecs
5089N/A import dbus
6557N/A--- pidgin-2.11.0/libpurple/purple-url-handler.orig 2016-08-01 08:34:00.751957460 -0700
6557N/A+++ pidgin-2.11.0/libpurple/purple-url-handler 2016-08-01 10:04:59.981783481 -0700
5089N/A@@ -1,4 +1,4 @@
5089N/A-#!/usr/bin/env python
5089N/A+#!/usr/bin/python2.7
6557N/A from __future__ import print_function
5089N/A import dbus
5089N/A import re
6557N/A@@ -249,7 +249,7 @@
6557N/A
6557N/A def myim(uri):
6557N/A protocol = "prpl-myspace"
6557N/A- print "TODO: send uri: ", uri
6557N/A+ print("TODO: send uri: %s" % uri)
6557N/A assert False, "Not implemented"
6557N/A
6557N/A def sip(uri):