From 767e8caacb0b4026777e4b5ccd2d5a4e4f4e6138 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Oct 06 2008 21:43:42 +0000 Subject: Don't try to send a mail directly to the dep, let the resolver figure out the package that owns the dep and send the mail there instead. --- diff --git a/utils/spam-o-matic b/utils/spam-o-matic index 70cb6c7..7ca031a 100755 --- a/utils/spam-o-matic +++ b/utils/spam-o-matic @@ -103,8 +103,7 @@ def assignBlame(resolver, dep, guilty): list = [] # The dep itself - if addOwner(guilty, dep): - list.append(dep) + list.append(dep) # Something that provides the dep __addpackages(resolver.whatProvides(dep, None, None))