From: James Troup Date: Mon, 25 Feb 2002 15:12:01 +0000 (+0000) Subject: Fix bogus .diff.gz size/md5sum mismatch rejection X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce3a93ce25556d7f43c036435ff39676987b168b;p=dak Fix bogus .diff.gz size/md5sum mismatch rejection --- diff --git a/katie.py b/katie.py index 3c9f9b0f..147a8849 100644 --- a/katie.py +++ b/katie.py @@ -2,7 +2,7 @@ # Utility functions for katie # Copyright (C) 2001 James Troup -# $Id: katie.py,v 1.8 2002-02-22 22:49:14 troup Exp $ +# $Id: katie.py,v 1.9 2002-02-25 15:12:01 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 @@ -615,12 +615,12 @@ class Katie: dsc_files = self.pkg.dsc_files; legacy_source_untouchable = self.pkg.legacy_source_untouchable; orig_tar_gz = None; - found = None; # Try and find all files mentioned in the .dsc. This has # to work harder to cope with the multiple possible # locations of an .orig.tar.gz. for dsc_file in dsc_files.keys(): + found = None; if files.has_key(dsc_file): actual_md5 = files[dsc_file]["md5sum"]; actual_size = int(files[dsc_file]["size"]);