From 4e398cc908f76365b16e38f15d1d1ac64012fd26 Mon Sep 17 00:00:00 2001 From: Guido Guenther Date: Thu, 17 Jul 2008 13:45:10 -0230 Subject: --auto and --since are incompatible --- git-dch | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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: -- cgit v1.2.3