aboutsummaryrefslogtreecommitdiff
path: root/Navigation.py
diff options
context:
space:
mode:
Diffstat (limited to 'Navigation.py')
-rw-r--r--Navigation.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Navigation.py b/Navigation.py
index a0f40baf..f1683df8 100644
--- a/Navigation.py
+++ b/Navigation.py
@@ -30,7 +30,7 @@ class Navigation:
x(i)
def playService(self, ref):
- print "playing", ref.toString()
+ print "playing", ref and ref.toString()
self.currentlyPlayingServiceReference = None
self.currentlyPlayingService = None
if ref is None:
@@ -65,6 +65,7 @@ class Navigation:
return None
def stopService(self):
+ print "stopService"
if self.pnav:
self.pnav.stopService()
self.currentlyPlayingService = None