X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=lisa;h=724360a8aeeaa6c4f49852de01f7780a5d1d4377;hb=30b41506a6105ab23a0cac9e8197475a89236224;hp=044912860e558667b80d47490abee2ad2d73c036;hpb=8ecf66b7d933929ca5f504a32fb54542b0b87b71;p=dak.git diff --git a/lisa b/lisa index 04491286..724360a8 100755 --- a/lisa +++ b/lisa @@ -2,7 +2,7 @@ # Handles NEW and BYHAND packages # Copyright (C) 2001, 2002 James Troup -# $Id: lisa,v 1.9 2002-05-08 11:13:02 troup Exp $ +# $Id: lisa,v 1.10 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 @@ -58,7 +58,7 @@ import apt_pkg, apt_inst; import db_access, fernanda, katie, logging, utils; # Globals -lisa_version = "$Revision: 1.9 $"; +lisa_version = "$Revision: 1.10 $"; Cnf = None; Options = None; @@ -760,8 +760,8 @@ def main(): Katie.Subst["__BCC__"] = bcc; for changes_file in changes_files: - if not os.path.exists(changes_file): - print "\nSkipping %s - file does not exist." % (changes_file); + changes_file = utils.validate_changes_file_arg(changes_file, 0); + if not changes_file: continue; print "\n" + changes_file; do_pkg (changes_file);