aboutsummaryrefslogtreecommitdiffhomepage
path: root/git-buildpackage
diff options
context:
space:
mode:
authorGuido Guenther <agx@sigxcpu.org>2007-01-13 21:54:26 +0100
committerGuido Guenther <agx@bogon.sigxcpu.org>2007-01-13 21:54:26 +0100
commit202bbf8523ed2633fff10c6a5eed74d68d177752 (patch)
treec4f3c9c1f3cfcb9cd8c93fc064a1b879442588c7 /git-buildpackage
parentc18e74318d675fab42f68a7b3d84b4e8c5cb9a07 (diff)
fix error message in case the upstream branch doesn't exist
Diffstat (limited to 'git-buildpackage')
-rwxr-xr-xgit-buildpackage4
1 files changed, 2 insertions, 2 deletions
diff --git a/git-buildpackage b/git-buildpackage
index 2852d251..00793d42 100755
--- a/git-buildpackage
+++ b/git-buildpackage
@@ -106,9 +106,9 @@ def main(argv):
cp = parse_changelog('debian/changelog')
if not is_native(cp) and not has_orig(cp, output_dir):
- print "%s does not exist, creating from branch %s" % (orig_file(cp), options.upstream_branch)
+ print "%s does not exist, creating from branch '%s'" % (orig_file(cp), options.upstream_branch)
if not repo.has_branch(options.upstream_branch):
- print >>sys.stderr,"Upstream branch '%s' does not exist" % options.upstream
+ print >>sys.stderr,"Upstream branch '%s' does not exist" % options.upstream_branch
return 1
if not create_orig(cp, output_dir, options.upstream_branch):
return 1