From 25947c369d59683e95f0ec07e69ae9329c50391c Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Sun, 6 Jan 2013 21:27:35 +0000 Subject: [PATCH] update error message --- morituri/common/checksum.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/morituri/common/checksum.py b/morituri/common/checksum.py index 0625d8d..b027be5 100644 --- a/morituri/common/checksum.py +++ b/morituri/common/checksum.py @@ -163,8 +163,8 @@ class ChecksumTask(log.Loggable, gstreamer.GstPipelineTask): self.debug("checksum: %08X", self._checksum) self.debug("bytes: %d", self._bytes) if self._frameEnd != last: - print 'ERROR: did not get all frames, %d missing' % ( - self._frameEnd - last) + print 'ERROR: did not get all frames, %d of %d missing' % ( + self._frameEnd - last, self._frameEnd) self.checksum = self._checksum