Fix new-release in interactive mode (-i)
Stop overwriting the target sha value. Change-Id: Ie8b39bd848c659ac8834b063d5b1e7bb9da2a1e3
This commit is contained in:
parent
4507389f96
commit
52f52d8340
@ -502,8 +502,8 @@ def main():
|
||||
len(change_lines), repo, last_tag)
|
||||
else:
|
||||
LOG.info("%s changes to %s are:", len(change_lines), repo)
|
||||
for sha, descr in change_lines[0:max_changes_show]:
|
||||
LOG.info("* %s %s", sha[:7], descr)
|
||||
for _sha, descr in change_lines[0:max_changes_show]:
|
||||
LOG.info("* %s %s", _sha[:7], descr)
|
||||
leftover_change_lines = change_lines[max_changes_show:]
|
||||
if leftover_change_lines:
|
||||
LOG.info(" and %s more changes...",
|
||||
|
Loading…
x
Reference in New Issue
Block a user