summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Lauer <mickey@vanille-media.de>2008-03-20 22:11:32 +0000
committerMichael Lauer <mickey@vanille-media.de>2008-03-20 22:11:32 +0000
commit728d2d3171bdbdc4dbd432d3186eadfd86986875 (patch)
treecbb2b0642c0ce793a76e7afe3ca53a53b8e6e826
parenta29a5e93ed57d0f760b81be1582601604363383b (diff)
add prevent_to_get_display_during_import.patch (by Aloisio Almeida)
-rw-r--r--packages/python/python-pygtk/prevent_to_get_display_during_import.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/packages/python/python-pygtk/prevent_to_get_display_during_import.patch b/packages/python/python-pygtk/prevent_to_get_display_during_import.patch
new file mode 100644
index 0000000000..db3469ef57
--- /dev/null
+++ b/packages/python/python-pygtk/prevent_to_get_display_during_import.patch
@@ -0,0 +1,14 @@
+Index: pygtk-2.10.4/gtk/__init__.py
+===================================================================
+--- pygtk-2.10.4.orig/gtk/__init__.py 2007-11-27 19:27:05.000000000 -0300
++++ pygtk-2.10.4/gtk/__init__.py 2007-11-27 19:28:22.000000000 -0300
+@@ -78,7 +78,8 @@
+
+ keysyms = LazyModule('keysyms', locals())
+
+-_init()
++if not hasattr(sys.modules['__main__'], 'python_launcher_enabled'):
++ init()
+
+ # CAPI
+ _PyGtk_API = _gtk._PyGtk_API