From b3931e00dfc7dcbeabc24c5f717d1fe21268470f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Guido=20G=C3=BCnther?= Date: Tue, 9 Aug 2011 19:21:45 +0200 Subject: [PATCH] Fix missing branch name in error message --- gbp-pq | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gbp-pq b/gbp-pq index 3622433..e826b8e 100755 --- a/gbp-pq +++ b/gbp-pq @@ -185,7 +185,8 @@ def import_quilt_patches(repo, branch, series, tries): pq_branch = pq_branch_name(branch) if repo.has_branch(pq_branch): - raise GbpError, ("Patch queue branch '%s'. already exists. Try 'rebase' instead.") + raise GbpError, ("Patch queue branch '%s'. already exists. Try 'rebase' instead." + % pq_branch) commits = repo.commits(options=['-%d' % tries], first_parent=True) for commit in commits: -- 2.7.4