X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=contrib%2Ffix.9;fp=contrib%2Ffix.9;h=3c530a1c3f63c41e99b40bb4a28db637794dd003;hb=c1c7681bf43c58dd5cf34d1c1814a75ae594688b;hp=4a655285abd6448ef6df7abc8398a19ef2902af5;hpb=c7ce079ad8627242b78e817208b7a77e781341d5;p=dak.git diff --git a/contrib/fix.9 b/contrib/fix.9 index 4a655285..3c530a1c 100755 --- a/contrib/fix.9 +++ b/contrib/fix.9 @@ -2,7 +2,7 @@ # Fix for bug in katie where dsc_files was initialized from changes and not dsc # Copyright (C) 2000 James Troup -# $Id: fix.9,v 1.2 2000-12-18 07:11:25 troup Exp $ +# $Id: fix.9,v 1.3 2001-11-04 22:28:44 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 @@ -61,7 +61,7 @@ def main (): dsc_files = utils.build_file_list(dsc, 1); q = projectB.query("SELECT s.id, l.id, l.path FROM source s, location l, files f WHERE s.source = '%s' AND s.version = '%s' AND f.id = s.file AND f.location = l.id" % (dsc["source"], dsc["version"])); ql = q.getresult(); - if ql == [] or len(ql) > 1: + if not ql or len(ql) > 1: print " EEEEEEEEEEEEEEK!!!" print " ",base_dsc_file source_id = ql[0][0];