diff --git a/ChangeLog b/ChangeLog index b43a039925..768144ae61 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2005-10-05 Thomas Vander Stichele + + * gst/__init__.py: + don't import gobject + revert ltihooks change from Johan - if it throws an exception + there is a bug and I want to fix it + 2005-10-04 Thomas Vander Stichele * configure.ac: diff --git a/gst/__init__.py b/gst/__init__.py index d536b3a854..5087a7b747 100644 --- a/gst/__init__.py +++ b/gst/__init__.py @@ -30,8 +30,6 @@ except: import pygtk pygtk.require('2.0') -import gobject -del gobject try: import sys, DLFCN @@ -88,6 +86,5 @@ if __ltihooks_used__: __ltihooks_used__ = False del ltihooks import sys - if 'ltihooks' in sys.modules: - del sys.modules['ltihooks'] + del sys.modules['ltihooks']