summaryrefslogtreecommitdiff
path: root/gr-utils/python/modtool/code_generator.py
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2013-05-02 12:05:38 -0400
committerTom Rondeau <trondeau@vt.edu>2013-05-02 12:05:38 -0400
commitc443098d5a266915a417afe43ebf1fe3198ad68b (patch)
tree71613687b2dbe6eed5c50f19ad6513bade703085 /gr-utils/python/modtool/code_generator.py
parent70acb23e775d7e29868d2734a3997743524fa07f (diff)
parentba86c365110abf908afef464ad2f49743993eb2b (diff)
Merge branch 'next-modtool' into runtime_pimpl
Diffstat (limited to 'gr-utils/python/modtool/code_generator.py')
-rw-r--r--gr-utils/python/modtool/code_generator.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/gr-utils/python/modtool/code_generator.py b/gr-utils/python/modtool/code_generator.py
index fbe9aa92c2..33cebc68c4 100644
--- a/gr-utils/python/modtool/code_generator.py
+++ b/gr-utils/python/modtool/code_generator.py
@@ -31,14 +31,14 @@ class GRMTemplate(Cheetah.Template.Template):
""" An extended template class """
def __init__(self, src, searchList):
self.grtypelist = {
- 'sync': 'gr_sync_block',
- 'sink': 'gr_sync_block',
- 'source': 'gr_sync_block',
- 'decimator': 'gr_sync_decimator',
- 'interpolator': 'gr_sync_interpolator',
- 'general': 'gr_block',
- 'tagged_stream': 'gr_tagged_stream_block',
- 'hier': 'gr_hier_block2',
+ 'sync': 'sync_block',
+ 'sink': 'sync_block',
+ 'source': 'sync_block',
+ 'decimator': 'sync_decimator',
+ 'interpolator': 'sync_interpolator',
+ 'general': 'block',
+ 'tagged_stream': 'tagged_stream_block',
+ 'hier': 'hier_block2',
'noblock': ''}
searchList['str_to_fancyc_comment'] = str_to_fancyc_comment
searchList['str_to_python_comment'] = str_to_python_comment