Skip to content

Commit

Permalink
Merge pull request #85 from ros2/avoid_builtin_use
Browse files Browse the repository at this point in the history
Avoid use of license as variable name
  • Loading branch information
dhood authored Apr 2, 2018
2 parents f46d499 + 7fba445 commit c30d519
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ros2pkg/ros2pkg/verb/create.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def main(self, *, args):
print('version:', package.version)
print('description:', package.description)
print('maintainer:', [str(maintainer) for maintainer in package.maintainers])
print('licenses:', [license for license in package.licenses])
print('licenses:', [license_ for license_ in package.licenses])
print('build type:', package.get_build_type())
print('dependencies:', [str(dependency) for dependency in package.build_depends])
if args.cpp_node_name:
Expand Down

0 comments on commit c30d519

Please sign in to comment.