Skip to content

Commit

Permalink
Fixes #15291: rudder-dev blame doesn display properly 5 digits issue id
Browse files Browse the repository at this point in the history
  • Loading branch information
peckpeck committed Jul 24, 2019
1 parent 8784955 commit 41678df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/rudder-dev/rudder-dev-src
Original file line number Diff line number Diff line change
Expand Up @@ -1772,7 +1772,7 @@ def blame(filename, long_format, before_commit, changed_from):
logline = m.group(1) + " " + logtype + " #" + m.group(3)
else:
logline = commit_id
output += "%-17.17s %s\n" % (logline, match.group(2))
output += "%-18.18s %s\n" % (logline, match.group(2))
print(output)


Expand Down

0 comments on commit 41678df

Please sign in to comment.