Skip to content

Commit b954b27

Browse files
committed
Fixed runtime errors associated with the changes made from commit:
692c573
1 parent e943297 commit b954b27

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

about_code_tool/genattrib.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -162,9 +162,9 @@ def main(args, opts):
162162
sys.exit(errno.EEXIST)
163163

164164
if not exists(output_path) or (exists(output_path) and overwrite):
165-
collector = AboutCollector(input_path, output_path, opt_arg_num)
165+
collector = AboutCollector(input_path, opt_arg_num)
166166
sublist = None if not component_subset_path else component_subset_to_sublist(component_subset_path)
167-
attrib_str = collector.generate_attribution( sublist = sublist )
167+
attrib_str = collector.generate_attribution( limit_to = sublist )
168168
with open(output_path, "w") as f:
169169
f.write(attrib_str)
170170

0 commit comments

Comments
 (0)