Index: action.py ================================================================== --- action.py +++ action.py @@ -131,11 +131,11 @@ # Start web browser # def browser(url): bin = conf.play.get("url/http", "sensible-browser") - print url + log.BROWSER(bin) run(bin + " " + quote(url)) # Open help browser, streamtuner2 pages # Index: channels/__init__.py ================================================================== --- channels/__init__.py +++ channels/__init__.py @@ -239,11 +239,11 @@ # Either fetches new stream data, or displays list from cache. def load(self, category, force=False, y=None): # called to early if not category: - print "load(None)" + log.ERR("load(None)") return self.current = category # get data from cache or download if force or not category in self.streams: Index: channels/jamendo.py ================================================================== --- channels/jamendo.py +++ channels/jamendo.py @@ -324,11 +324,10 @@ # Feeds (News) elif cat == "feeds": for e in self.api(method="feeds", order="date_start_desc", target="notlogged"): if e.get("joinid") and e.get("subtitle"): - print e entries.append({ "genre": e["type"], "title": e["title"]["en"], "playing": e["subtitle"]["en"], "extra": e["text"]["en"], Index: cli.py ================================================================== --- cli.py +++ cli.py @@ -50,11 +50,11 @@ else: command = actions[0] if command in dir(self): cmd = self.__getattribute__(command) else: - print "No such command:", command + log.ERR("No such command:", command) return # run result = cmd(*actions[1:]) if result: Index: help/index.page ================================================================== --- help/index.page +++ help/index.page @@ -37,9 +37,9 @@