diff options
author | Mike Jameson <mike@scanoo.com> | 2013-03-12 17:37:44 +0000 |
---|---|---|
committer | Mike Jameson <mike@scanoo.com> | 2013-03-12 17:37:44 +0000 |
commit | 87ab5af40f056f98aed6bd9a6af5306356b9c110 (patch) | |
tree | 1236361f4ccdae93162fc5a7279af7804546b0d6 | |
parent | 45f9c0a5792526279ebf5ffa6a4853c7e2de6dd6 (diff) |
modtool: fixed general python block template
-rw-r--r-- | gr-utils/src/python/modtool/templates.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-utils/src/python/modtool/templates.py b/gr-utils/src/python/modtool/templates.py index 706017cc21..4df96f252c 100644 --- a/gr-utils/src/python/modtool/templates.py +++ b/gr-utils/src/python/modtool/templates.py @@ -338,7 +338,7 @@ class ${blockname}(${parenttype}): def general_work(self, input_items, output_items): output_items[0][:] = input_items[0] - consume(0, len(input_items[0]) + consume(0, len(input_items[0])) \#self.consume_each(len(input_items[0])) return len(output_items[0]) #stop |