From: Ivan Frade Date: Sat, 5 Sep 2009 08:03:17 +0000 (+0300) Subject: Remove references to the old album_art file X-Git-Tag: mussorgsky-0.2.2-1~1 X-Git-Url: http://vcs.maemo.org/git/?p=mussorgsky;a=commitdiff_plain;h=1890cddbc063d6f77c2e2df6e4521a2f6dffa365 Remove references to the old album_art file This was crashing the boot of the application --- diff --git a/src/download_dialog.py b/src/download_dialog.py index c71fa08..d467799 100644 --- a/src/download_dialog.py +++ b/src/download_dialog.py @@ -1,6 +1,6 @@ #!/usr/bin/env python2.5 import gtk, gobject -from album_art import MussorgskyAlbumArt +from album_art_thread import MussorgskyAlbumArt from utils import escape_html class MussorgskyAlbumArtDownloadDialog (gtk.Dialog): diff --git a/src/edit_panel.py b/src/edit_panel.py index 82759c8..3de1d5b 100755 --- a/src/edit_panel.py +++ b/src/edit_panel.py @@ -4,7 +4,6 @@ import gtk, gobject from mutagen_backend import MutagenBackend from player_backend import MediaPlayer import album_art_spec -from album_art import MussorgskyAlbumArt import os # Fields in the tuple! @@ -25,7 +24,6 @@ class MussorgskyEditPanel (hildon.StackableWindow): self.artist_change_handler = -1 self.writer = MutagenBackend () self.player = MediaPlayer () - self.album_art_retriever = MussorgskyAlbumArt () self.albums_list = [a [0] for a in albums_list] self.artists_list = [a [0] for a in artists_list] self.__create_view ()