rhythmbox r6118 - in trunk: . plugins/rb



Author: jmatthew
Date: Sun Dec 28 10:36:08 2008
New Revision: 6118
URL: http://svn.gnome.org/viewvc/rhythmbox?rev=6118&view=rev

Log:
2008-12-28  Jonathan Matthew  <jonathan d14n org>

	* plugins/rb/Loader.py:  We'll actually require pygobject 2.15.5 (when
	that exists) to use gio to download things, not 2.15.3, due to
	bug #551059.  If your distribution's pygobject package includes the fix
	for that, don't include this change.  Simple..


Modified:
   trunk/ChangeLog
   trunk/plugins/rb/Loader.py

Modified: trunk/plugins/rb/Loader.py
==============================================================================
--- trunk/plugins/rb/Loader.py	(original)
+++ trunk/plugins/rb/Loader.py	Sun Dec 28 10:36:08 2008
@@ -30,8 +30,8 @@
 use_gio = False
 try:
 	import gio
-	# before 2.15.3, file.load_contents_async didn't work correctly
-	if gio.pygio_version > (2,15,2):
+	# before 2.15.5, file.load_contents_async didn't work correctly
+	if gio.pygio_version > (2,15,4):
 		use_gio = True
 except:
 	# probably don't have gio at all



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]