X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=lisa;h=47289220e8907654e89df3b87c3467b9b0b27680;hb=4aa1c92aab0c7af61e5c752ea2eb5838d673f25b;hp=fd40154b08727897bf0f3b9708254921db5204c0;hpb=fea7986a7c51e8169e6444556404ee904ce494d8;p=dak.git diff --git a/lisa b/lisa index fd40154b..47289220 100755 --- a/lisa +++ b/lisa @@ -2,7 +2,7 @@ # Handles NEW and BYHAND packages # Copyright (C) 2001 James Troup -# $Id: lisa,v 1.5 2002-03-26 22:05:47 troup Exp $ +# $Id: lisa,v 1.7 2002-04-20 13:13:15 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.5 $"; +lisa_version = "$Revision: 1.7 $"; Cnf = None; Options = None; @@ -752,13 +752,16 @@ def main(): # Kill me now? **FIXME** Cnf["Dinstall::Options::No-Mail"] = ""; - bcc = "X-Lisa: %s" % (lisa_version); + bcc = "X-Katie: %s" % (lisa_version); if Cnf.has_key("Dinstall::Bcc"): Katie.Subst["__BCC__"] = bcc + "\nBcc: %s" % (Cnf["Dinstall::Bcc"]); else: 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); + continue; print "\n" + changes_file; do_pkg (changes_file);