Skip to content

Commit 23b8ee6

Browse files
committed
Fixed #55
Do not include data from about_file into the generated ABOUT files.
1 parent c195032 commit 23b8ee6

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

genabout.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,6 +257,8 @@ def format_output(self, input_list):
257257
+ 'name: ' + name + '\n' \
258258
+ 'version: ' + version + '\n\n'
259259
for item in sorted(about_dict_list.iterkeys()):
260+
if item == 'about_file':
261+
continue
260262
if not item in MANDATORY_FIELDS:
261263
# The purpose of the replace('\n', '\n ') is used to
262264
# format the continuation strings

0 commit comments

Comments
 (0)