[gnome-music/wip/merge: 65/343] Add albumArtCache.py to the files to install
- From: Ignacio Casal Quinteiro <icq src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-music/wip/merge: 65/343] Add albumArtCache.py to the files to install
- Date: Thu, 25 Jul 2013 11:18:53 +0000 (UTC)
commit d360428d37a29fa04ba13fafa42b9d03c031ce4d
Author: Guillaume Quintard <guillaume quintard gmail com>
Date: Sun Jul 14 14:52:31 2013 +0200
Add albumArtCache.py to the files to install
and fix a few imports
gnomemusic/Makefile.am | 1 +
gnomemusic/application.py | 2 +-
gnomemusic/player.py | 2 +-
gnomemusic/window.py | 8 ++++----
4 files changed, 7 insertions(+), 6 deletions(-)
---
diff --git a/gnomemusic/Makefile.am b/gnomemusic/Makefile.am
index 60de614..329e36d 100644
--- a/gnomemusic/Makefile.am
+++ b/gnomemusic/Makefile.am
@@ -1,6 +1,7 @@
appdir = $(pythondir)/gnomemusic/
app_PYTHON = \
+ albumArtCache.py \
application.py \
__init__.py \
player.py \
diff --git a/gnomemusic/application.py b/gnomemusic/application.py
index a131097..2e2a5cf 100644
--- a/gnomemusic/application.py
+++ b/gnomemusic/application.py
@@ -1,5 +1,5 @@
from gi.repository import Gtk, Gio, GLib
-from window import Window
+from gnomemusic.window import Window
class Application(Gtk.Application):
diff --git a/gnomemusic/player.py b/gnomemusic/player.py
index 3e5c2ee..750b5f9 100644
--- a/gnomemusic/player.py
+++ b/gnomemusic/player.py
@@ -3,7 +3,7 @@ GIRepository.Repository.prepend_search_path('libgd')
from gi.repository import Gtk, Gst, GLib, GstAudio, Gdk, Grl, Gio, GstPbutils, GObject
from random import randint
-from albumArtCache import AlbumArtCache
+from gnomemusic.albumArtCache import AlbumArtCache
ART_SIZE = 34
diff --git a/gnomemusic/window.py b/gnomemusic/window.py
index 363a971..737e89d 100644
--- a/gnomemusic/window.py
+++ b/gnomemusic/window.py
@@ -1,10 +1,10 @@
from gi.repository import Gtk, Gio, GLib, Tracker
from gettext import gettext as _
-from toolbar import Toolbar
-from player import Player, SelectionToolbar
-import view as Views
-import query as Query
+from gnomemusic.toolbar import Toolbar
+from gnomemusic.player import Player, SelectionToolbar
+import gnomemusic.view as Views
+import gnomemusic.query as Query
tracker = Tracker.SparqlConnection.get(None)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]