From: David Kalnischkies Date: Thu, 25 Feb 2010 18:51:05 +0000 (+0100) Subject: * cmdline/apt-mark: X-Git-Tag: 0.8.0~9^2~64^2~38 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/a94263ba750c561ecf40241104970bc303cbc0b7 * cmdline/apt-mark: - don't crash if no arguments are given (Closes: #570962) --- diff --git a/cmdline/apt-mark b/cmdline/apt-mark index 2326ece38..f4f6aa576 100755 --- a/cmdline/apt-mark +++ b/cmdline/apt-mark @@ -76,6 +76,10 @@ if __name__ == "__main__": help="print verbose status messages to stdout") (options, args) = parser.parse_args() + if not args: + parser.print_help() + sys.exit(1) + # get the state-file if not options.filename: STATE_FILE = apt_pkg.Config.FindDir("Dir::State") + "extended_states" diff --git a/debian/changelog b/debian/changelog index 2b5f6fd25..c59b81af5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,8 @@ apt (0.7.26) UNRELEASED; urgency=low * Switch to dpkg-source 3.0 (native) format + * cmdline/apt-mark: + - don't crash if no arguments are given (Closes: #570962) -- David Kalnischkies Fri, 19 Feb 2010 21:21:43 +0100