X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=ashley;h=f29d67d19b5b31db0385306462f2e0f3e070e788;hb=8e9a5d533c8458eaca33266208f6c347d66dfeef;hp=12b860a63f68865cb904ce2f046d28ba283b1301;hpb=02fc30ba2ba16c09400912cfed5bde86b8a66daa;p=dak.git diff --git a/ashley b/ashley index 12b860a6..f29d67d1 100755 --- a/ashley +++ b/ashley @@ -2,7 +2,7 @@ # Dump variables from a .katie file to stdout # Copyright (C) 2001, 2002 James Troup -# $Id: ashley,v 1.4 2002-05-08 11:08:45 troup Exp $ +# $Id: ashley,v 1.5 2002-05-10 00:24:23 troup Exp $ # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -25,11 +25,7 @@ def main(): Cnf = utils.get_conf() k = katie.Katie(Cnf); for arg in sys.argv[1:]: - if arg[-6:] == ".katie": - arg = arg[:-6]+".changes"; - if arg[-8:] != ".changes": - utils.warn("Skipping '%s', unknown file type." % (arg)); - continue; + arg = utils.validate_changes_file_arg(arg); k.pkg.changes_file = arg; print "%s:" % (arg); k.init_vars();