diff options
Diffstat (limited to 'gr-utils/blocktool/core/comments.py')
-rw-r--r-- | gr-utils/blocktool/core/comments.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-utils/blocktool/core/comments.py b/gr-utils/blocktool/core/comments.py index 7973165b0d..2e2a1709dd 100644 --- a/gr-utils/blocktool/core/comments.py +++ b/gr-utils/blocktool/core/comments.py @@ -90,7 +90,7 @@ def read_comments(self): _index = lines.index(line) if _index is not None: - _index = _index+1 + _index = _index + 1 for num in range(_index, len(lines)): if Constants.END_BLOCKTOOL in lines[num]: break @@ -192,7 +192,7 @@ def add_comments(self): if _index is None: with open(self.target_file, 'a') as header: header.write('\n') - header.write('/* '+Constants.BLOCKTOOL + '\n') + header.write('/* ' + Constants.BLOCKTOOL + '\n') header.write('input_signature: ' + parsed_io['input']['signature'] + '\n') header.write('input_min_streams: ' + |