Index: Makefile ================================================================== --- Makefile +++ Makefile @@ -54,11 +54,11 @@ #@BUG: relative package references leave a /tmp/doc/ folder $(PACK) -u packfile -s src -t zip --zip-shebang "/usr/bin/env python" \ -f -p "$(NAME)-$(VERSION).pyz" --prefix=./ .zip.py st2.py src: cd .. && pax -wvJf streamtuner2/streamtuner2-$(VERSION).src.txz \ - streamtuner2/*.{py,png,svg,desktop} streamtuner2/channels/*.{py,png} \ + streamtuner2/*.{py,png,desktop} streamtuner2/channels/*.{py,png} \ streamtuner2/{bundle/,contrib/,help/,gtk,NEWS,READ,PACK,PKG,CRED,Make,bin,.zip}* # test .deb contents check: dpkg-deb -c streamtuner2*deb Index: contrib/glrp.py ================================================================== --- contrib/glrp.py +++ contrib/glrp.py @@ -36,12 +36,12 @@ titles = dict(listeners=False, bitrate=False, playing="Location") # Imports the CSV once and populates streams def update_categories(self): - #dal = ahttp.get("http://fossil.include-once.org/streamtuner2/cat/contrib/glrp.csv") - dat = open("contrib/glrp.csv", "r").read() + dat = ahttp.get("http://fossil.include-once.org/streamtuner2/cat/contrib/glrp.csv") + #dat = open("contrib/glrp.csv", "r").read() self.streams = {} if dat: ls = csv.reader(dat.split("\n")) for title, url, genre, location, fav in [x for x in ls if len(x)==5]: if not self.streams.get(genre):