diff options
-rwxr-xr-x | gbp/scripts/pq.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gbp/scripts/pq.py b/gbp/scripts/pq.py index bc572388..3f7cd52f 100755 --- a/gbp/scripts/pq.py +++ b/gbp/scripts/pq.py @@ -135,7 +135,7 @@ def import_quilt_patches(repo, branch, series, tries, force): i = len(commits) for commit in commits: if len(commits): - gbp.log.info("%d tries left" % i) + gbp.log.info("%d %s left" % (i, 'tries' if i > 1 else 'try')) try: gbp.log.info("Trying to apply patches at '%s'" % commit) repo.create_branch(pq_branch, commit) |