diff options
Diffstat (limited to 'net-im/telepathy-salut/files/patch-tools_glib-signals-marshal-gen.py')
-rw-r--r-- | net-im/telepathy-salut/files/patch-tools_glib-signals-marshal-gen.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/net-im/telepathy-salut/files/patch-tools_glib-signals-marshal-gen.py b/net-im/telepathy-salut/files/patch-tools_glib-signals-marshal-gen.py new file mode 100644 index 000000000000..8030597fbaae --- /dev/null +++ b/net-im/telepathy-salut/files/patch-tools_glib-signals-marshal-gen.py @@ -0,0 +1,16 @@ +--- tools/glib-signals-marshal-gen.py.orig 2011-08-16 11:04:41 UTC ++++ tools/glib-signals-marshal-gen.py +@@ -42,11 +42,11 @@ class Generator(object): + self.do_signal(signal) + + all = self.marshallers.keys() +- all.sort() ++ sorted(all) + for marshaller in all: + rhs = self.marshallers[marshaller] + if not marshaller.startswith('g_cclosure'): +- print 'VOID:' + ','.join(rhs) ++ print('VOID:' + ','.join(rhs)) + + if __name__ == '__main__': + argv = sys.argv[1:] |