From a483d0b860b5d21b7eb210aef120982ff788d6e4 Mon Sep 17 00:00:00 2001 From: Thomas Fillon Date: Wed, 16 Oct 2013 00:52:17 +0200 Subject: [PATCH] Fix bug in Vamp Simple host analyzer - II --- timeside/analyzer/vamp_plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timeside/analyzer/vamp_plugin.py b/timeside/analyzer/vamp_plugin.py index 3e8278c..f0f7c5c 100644 --- a/timeside/analyzer/vamp_plugin.py +++ b/timeside/analyzer/vamp_plugin.py @@ -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] -- 2.39.5