ran python 2to3 convert

Esse commit está contido em:
Timo Loewe
2013-10-20 13:36:02 +02:00
commit 0289ed966c
2 arquivos alterados com 5 adições e 5 exclusões
+1 -1
Ver Arquivo
@@ -1,5 +1,5 @@
[Plugin]
Loader=python
Loader=python3
Module=ArtDisplay
IAge=2
Depends=rb;artsearch
+4 -4
Ver Arquivo
@@ -35,7 +35,7 @@ from gi.repository import RB
import gettext
gettext.install('rhythmbox', RB.locale_dir())
import urllib
import urllib.request, urllib.parse, urllib.error
FADE_STEPS = 10
FADE_TOTAL_TIME = 1000
@@ -133,7 +133,7 @@ class FadingImage (Gtk.Misc):
def theme_changed (self, icon_theme):
try:
self.reload_anim_frames ()
except Exception, e:
except Exception as e:
warn ("Throbber animation not loaded: %s" % e, Warning)
self.reload_util_pixbufs ()
@@ -145,7 +145,7 @@ class FadingImage (Gtk.Misc):
except:
try:
missing_pixbuf = GdkPixbuf.Pixbuf.new_from_file_at_size (self.missing_image, self.size, self.size)
except Exception, e:
except Exception as e:
warn ("Missing artwork icon not found: %s" % e, Warning)
return
@@ -383,7 +383,7 @@ class ArtDisplayPlugin (GObject.GObject, Peas.Activatable):
if isinstance(data, GdkPixbuf.Pixbuf):
self.current_pixbuf = data
uri = "file://" + urllib.pathname2url(filename)
uri = "file://" + urllib.request.pathname2url(filename)
self.art_widget.set (entry, self.current_pixbuf, uri, None, None, False)
else:
self.art_widget.set (entry, None, None, None, None, False)