From: Torsten Werner Date: Fri, 25 Mar 2011 16:29:14 +0000 (+0100) Subject: Ignore yet another warning in cruft-report. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d8eb64b3baff23bd2a9dab27df401c86cfbcbcfa;p=dak Ignore yet another warning in cruft-report. Signed-off-by: Torsten Werner --- diff --git a/dak/cruft_report.py b/dak/cruft_report.py index aac0d454..c691bb22 100755 --- a/dak/cruft_report.py +++ b/dak/cruft_report.py @@ -42,6 +42,9 @@ warnings.filterwarnings('ignore', \ warnings.filterwarnings('ignore', \ "Attribute '.*' of the 'apt_pkg\.TagFile' object is deprecated, use '.*' instead\.", \ DeprecationWarning) +warnings.filterwarnings('ignore', \ + "Attribute 'Find' of the 'apt_pkg\.TagSection' object is deprecated, use 'find' instead\.", \ + DeprecationWarning) ################################################################################