From 022bcd089fe9e0a227b3d308371968adf2ace998 Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Mon, 5 Aug 2013 23:18:37 +0200 Subject: [PATCH] scanner: Fix unregistering of the timeout callback --- mopidy/scanner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mopidy/scanner.py b/mopidy/scanner.py index 53ded736..5aeb2768 100644 --- a/mopidy/scanner.py +++ b/mopidy/scanner.py @@ -265,7 +265,7 @@ class Scanner(object): uri = self.uribin.get_property('uri') self.error_callback(uri, 'Processing timeout after %i seconds' % self.scan_timeout, 'debug') self.next_uri() - return True + return False def get_duration(self): self.pipe.get_state() # Block until state change is done.