aboutsummaryrefslogtreecommitdiffhomepage
path: root/git-buildpackage
diff options
context:
space:
mode:
authorGuido Guenther <agx@sigxcpu.org>2007-02-11 23:36:56 +0100
committerGuido Guenther <agx@bogon.sigxcpu.org>2007-02-11 23:36:56 +0100
commitf567c2545b989db75cd799f5a357b456d92ee6ab (patch)
tree3ad2905ee410361f404bfa37f632e0e92afcaf10 /git-buildpackage
parentac641c213b7f5ded93027b9f9148392fed043738 (diff)
We're parsing the version from the changelog, not a changes file
Diffstat (limited to 'git-buildpackage')
-rwxr-xr-xgit-buildpackage2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-buildpackage b/git-buildpackage
index 4d816bdf..ae2a9e2f 100755
--- a/git-buildpackage
+++ b/git-buildpackage
@@ -118,7 +118,7 @@ def main(argv):
try:
version = cp['Version']
except KeyError:
- raise GbpError, "Can't parse version from changes file"
+ raise GbpError, "Can't parse version from changelog"
else:
print "Tagging", version
GitTag(options.sign_tag, options.keyid)(build_tag(options.debian_tag, version))