]> git.saurik.com Git - apt.git/commitdiff
* cmdline/apt-mark:
authorDavid Kalnischkies <kalnischkies@gmail.com>
Thu, 25 Feb 2010 18:51:05 +0000 (19:51 +0100)
committerDavid Kalnischkies <kalnischkies@gmail.com>
Thu, 25 Feb 2010 18:51:05 +0000 (19:51 +0100)
  - don't crash if no arguments are given (Closes: #570962)

cmdline/apt-mark
debian/changelog

index 2326ece38eb513a459447bc9effb5142eaddde0f..f4f6aa5760e0fb1805fe22c11ce566f45bbdaf29 100755 (executable)
@@ -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"
index 2b5f6fd253d9f8d91c20f9e32dd4343db764348d..c59b81af56fa9baae10b7f59b837e13cecf2557c 100644 (file)
@@ -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 <kalnischkies@gmail.com>  Fri, 19 Feb 2010 21:21:43 +0100