From 712c8912d7f0762d6bc5813e751f014c214ee083 Mon Sep 17 00:00:00 2001 From: Thomas Fillon Date: Mon, 19 Jan 2015 09:18:50 +0100 Subject: [PATCH] Fix #69 --- timeside/core/analyzer.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/timeside/core/analyzer.py b/timeside/core/analyzer.py index cc0a0a3..b3e2ce9 100644 --- a/timeside/core/analyzer.py +++ b/timeside/core/analyzer.py @@ -833,11 +833,7 @@ class FrameValueObject(ValueObject, FramewiseObject): else: chunksize = 1 numchunks = nb_frames - - print "nb_frames %d" % nb_frames - print "chunksize %d" % chunksize - print "numchunks %d" % numchunks - + if self.data.ndim <= 1: ychunks = self.data[:chunksize*numchunks].reshape((-1, chunksize)) -- 2.39.5