diff options
-rw-r--r-- | grc/core/generator/cpp_templates/CMakeLists.txt.mako | 2 | ||||
-rw-r--r-- | grc/core/generator/cpp_templates/flow_graph.cpp.mako | 2 | ||||
-rw-r--r-- | grc/core/generator/cpp_templates/flow_graph.hpp.mako | 2 | ||||
-rw-r--r-- | grc/core/generator/flow_graph.py.mako | 1 | ||||
-rw-r--r-- | grc/core/generator/top_block.py | 3 |
5 files changed, 3 insertions, 7 deletions
diff --git a/grc/core/generator/cpp_templates/CMakeLists.txt.mako b/grc/core/generator/cpp_templates/CMakeLists.txt.mako index 783ba71213..caae2dd9fb 100644 --- a/grc/core/generator/cpp_templates/CMakeLists.txt.mako +++ b/grc/core/generator/cpp_templates/CMakeLists.txt.mako @@ -8,7 +8,7 @@ % if flow_graph.get_option('description'): # Description: ${flow_graph.get_option('description')} % endif -# Generated: ${generated_time} +# GNU Radio version: ${version} ##################### <% diff --git a/grc/core/generator/cpp_templates/flow_graph.cpp.mako b/grc/core/generator/cpp_templates/flow_graph.cpp.mako index c03e0c1cc2..208ec97bbe 100644 --- a/grc/core/generator/cpp_templates/flow_graph.cpp.mako +++ b/grc/core/generator/cpp_templates/flow_graph.cpp.mako @@ -9,7 +9,7 @@ Author: ${flow_graph.get_option('author')} % if flow_graph.get_option('description'): Description: ${flow_graph.get_option('description')} % endif -Generated: ${generated_time} +GNU Radio version: ${version} ********************/ #include "${flow_graph.get_option('id')}.hpp" diff --git a/grc/core/generator/cpp_templates/flow_graph.hpp.mako b/grc/core/generator/cpp_templates/flow_graph.hpp.mako index 7ae119c44e..9ddc0d0cba 100644 --- a/grc/core/generator/cpp_templates/flow_graph.hpp.mako +++ b/grc/core/generator/cpp_templates/flow_graph.hpp.mako @@ -12,7 +12,7 @@ Author: ${flow_graph.get_option('author')} % if flow_graph.get_option('description'): Description: ${flow_graph.get_option('description')} % endif -Generated: ${generated_time} +GNU Radio version: ${version} ********************/ /******************** diff --git a/grc/core/generator/flow_graph.py.mako b/grc/core/generator/flow_graph.py.mako index 636e37bc05..1000f7a727 100644 --- a/grc/core/generator/flow_graph.py.mako +++ b/grc/core/generator/flow_graph.py.mako @@ -27,7 +27,6 @@ python_version = version_info.major % if flow_graph.get_option('description'): # Description: ${flow_graph.get_option('description')} % endif -# Generated: ${generated_time} # GNU Radio version: ${version} ################################################## diff --git a/grc/core/generator/top_block.py b/grc/core/generator/top_block.py index cac7537b99..dfceaf5f74 100644 --- a/grc/core/generator/top_block.py +++ b/grc/core/generator/top_block.py @@ -3,7 +3,6 @@ import operator import os import tempfile import textwrap -import time from mako.template import Template @@ -79,7 +78,6 @@ class TopBlockGenerator(object): 'parameters': parameters, 'monitors': monitors, 'generate_options': self._generate_options, - 'generated_time': time.ctime(), } for filename, data in self._build_python_code_from_template(): @@ -120,7 +118,6 @@ class TopBlockGenerator(object): 'parameters': parameters, 'monitors': monitors, 'generate_options': self._generate_options, - 'generated_time': time.ctime(), 'version': platform.config.version } flow_graph_code = python_template.render( |