X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fprocess_unchecked.py;h=cabdbf3f6f914738f2ad4bf0a6f14d9bf28578e4;hb=adc4e001c669e3519b18b493bb0ce7b882f6a3ac;hp=fafff7baff5060436c87a155a6456ede46a5e642;hpb=77bd8c2de837c0deb2255e12130712b4662a03f9;p=dak.git diff --git a/dak/process_unchecked.py b/dak/process_unchecked.py index fafff7ba..cabdbf3f 100755 --- a/dak/process_unchecked.py +++ b/dak/process_unchecked.py @@ -224,7 +224,10 @@ def package_to_suite(u, suite): q = q.join(DBSource).filter_by(source=u.pkg.changes['source']) q = q.filter_by(version=u.pkg.changes['version']).limit(1) - if q.count() < 1: + # NB: Careful, this logic isn't what you would think it is + # Source is already in {old-,}proposed-updates so no need to hold + # Instead, we don't move to the holding area, we just do an ACCEPT + if q.count() > 0: ret = False s.close()