Mercurial > code > home > repos > light9
changeset 1533:c962f19c7328
pin gtk version in asco
Ignore-this: 949a05cf9abd6878071eb209231ecb23
author | Drew Perttula <drewp@bigasterisk.com> |
---|---|
date | Wed, 10 May 2017 04:12:10 +0000 |
parents | c83c423b3de0 |
children | d4de13e83b7f |
files | bin/ascoltami2 |
diffstat | 1 files changed, 5 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/bin/ascoltami2 Wed May 10 04:09:53 2017 +0000 +++ b/bin/ascoltami2 Wed May 10 04:12:10 2017 +0000 @@ -5,13 +5,16 @@ from rdflib import URIRef sys.path.append(".") sys.path.append('/usr/lib/python2.7/dist-packages') # For gi + +import gi +gi.require_version('Gst', '1.0') +gi.require_version('Gtk', '3.0') + from light9.ascoltami.player import Player from light9.ascoltami.playlist import Playlist, NoSuchSong from light9.ascoltami.webapp import makeWebApp, songUri, songLocation from light9 import networking, showconfig -import gi -gi.require_version('Gst', '1.0') from gi.repository import GObject, Gst, Gtk class App(object):