diff vamp/__init__.py @ 67:6f6a54963ce8

Fix bizarre type (o for 0)
author Chris Cannam
date Wed, 14 Jan 2015 12:43:36 +0000
parents f0e2a8421797
children e15e684d2af4
line wrap: on
line diff
--- a/vamp/__init__.py	Wed Jan 14 11:55:20 2015 +0000
+++ b/vamp/__init__.py	Wed Jan 14 12:43:36 2015 +0000
@@ -39,7 +39,7 @@
         assert o in outIndices
 
     if outputs == []:
-        outputs = [plugOuts[o]["identifier"]]
+        outputs = [plugOuts[0]["identifier"]]
 
     singleOutput = (len(outputs) == 1)