summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2012-08-13 08:36:39 +0200
committerGuido Günther <agx@sigxcpu.org>2012-08-13 08:36:39 +0200
commite05bfb9bc6c9861dcc909a6e7ac138b0aefbd707 (patch)
tree1237d69ccddfebf0b9ddca2ba11caa6bd62d3f4b
parent398c16ad61a21b72a5f7d1d7fe9c4669a88b029b (diff)
dch: Fix error reporting on parsing errors
-rw-r--r--gbp/scripts/dch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gbp/scripts/dch.py b/gbp/scripts/dch.py
index c2ac50ec..b6fbab1b 100644
--- a/gbp/scripts/dch.py
+++ b/gbp/scripts/dch.py
@@ -338,7 +338,7 @@ def main(argv):
parser = GbpOptionParserDebian(command=os.path.basename(argv[0]), prefix='',
usage='%prog [options] paths')
except ConfigParser.ParsingError as err:
- gbp.log.errror(err)
+ gbp.log.err(err)
return 1
range_group = GbpOptionGroup(parser, "commit range options",
"which commits to add to the changelog")