Skip to content

Commit

Permalink
Fixed runtime errors associated with the changes made from commit:
Browse files Browse the repository at this point in the history
  • Loading branch information
jdaguil committed Jan 27, 2014
1 parent e943297 commit b954b27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions about_code_tool/genattrib.py
Expand Up @@ -162,9 +162,9 @@ def main(args, opts):
sys.exit(errno.EEXIST)

if not exists(output_path) or (exists(output_path) and overwrite):
collector = AboutCollector(input_path, output_path, opt_arg_num)
collector = AboutCollector(input_path, opt_arg_num)
sublist = None if not component_subset_path else component_subset_to_sublist(component_subset_path)
attrib_str = collector.generate_attribution( sublist = sublist )
attrib_str = collector.generate_attribution( limit_to = sublist )
with open(output_path, "w") as f:
f.write(attrib_str)

Expand Down

0 comments on commit b954b27

Please sign in to comment.