]> git.parisson.com Git - timeside.git/commitdiff
Fix bug in Vamp Simple host analyzer - II
authorThomas Fillon <thomas@parisson.com>
Tue, 15 Oct 2013 22:52:17 +0000 (00:52 +0200)
committerThomas Fillon <thomas@parisson.com>
Tue, 15 Oct 2013 22:52:17 +0000 (00:52 +0200)
timeside/analyzer/vamp_plugin.py

index 3e8278ca8ccb91dad0daf90bb7ef62bb2701b594..f0f7c5cd3481295782b5d39ad763a7aee71de18b 100644 (file)
@@ -123,7 +123,7 @@ class VampSimpleHost(Analyzer):
         res = stdout[8:]  # stdout containg the feature data
 
         if len(res) == 0:
-            return
+            return (None, None, None)
 
         # Parse stderr to get blocksize and stepsize
         blocksize_info = stderr[4]