Skip to content

Commit

Permalink
Simplify string manipulation.
Browse files Browse the repository at this point in the history
  • Loading branch information
allenh1 committed Feb 6, 2018
1 parent b9fe4a5 commit 951e972
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions superflore/generators/bitbake/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,13 @@ def main():
)
else:
pr_comment = pr_comment or (
'Superflore yocto generator began regeneration of package(s)' +
' %s from ROS distro %s from allenh1\'s fork of Meta-ROS ' % (
'Superflore yocto generator began regeneration of package(s)'
' %s from ROS distro %s from allenh1\'s fork of Meta-ROS'
' from commit %s.' % (
args.only,
args.ros_distro
) + ' from commit %s.' % (overlay.repo.get_last_hash())
args.ros_distro,
overlay.repo.get_last_hash()
)
)
# generate installers
total_installers = dict()
Expand Down

0 comments on commit 951e972

Please # to comment.