aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGuido Guenther <agx@sigxcpu.org>2008-07-17 13:45:10 -0230
committerGuido Guenther <agx@sigxcpu.org>2008-07-18 10:18:54 -0230
commit4e398cc908f76365b16e38f15d1d1ac64012fd26 (patch)
treedc57613b0e41ab65085b0238aba0007d0a98444d
parent3537f241c04b99f7027247219d78cca04f530d3f (diff)
--auto and --since are incompatible
-rwxr-xr-xgit-dch5
1 files changed, 4 insertions, 1 deletions
diff --git a/git-dch b/git-dch
index b07d689e..d9458d22 100755
--- a/git-dch
+++ b/git-dch
@@ -251,7 +251,10 @@ def main(argv):
(options, args) = parser.parse_args(argv[1:])
if options.snapshot and options.release:
- parser.error("--snapshot and --release are incompatible options")
+ parser.error("'--snapshot' and '--release' are incompatible options")
+
+ if options.since and options.auto:
+ parser.error("'--since' and '--auto' are incompatible options")
try:
if options.verbose: