]> git.decadent.org.uk Git - dak.git/commitdiff
Stupid warning messages!
authorTorsten Werner <twerner@debian.org>
Fri, 25 Mar 2011 16:42:48 +0000 (17:42 +0100)
committerTorsten Werner <twerner@debian.org>
Fri, 25 Mar 2011 16:42:48 +0000 (17:42 +0100)
Signed-off-by: Torsten Werner <twerner@debian.org>
daklib/config.py

index fef7512d8b405ccf8e72e8d2164ecb5499cba3af..ed8cf1d0d0e7cb57b2ba0ff1fdffdd6922508e81 100755 (executable)
@@ -39,12 +39,7 @@ default_config = "/etc/dak/dak.conf" #: default dak config, defines host propert
 # suppress some deprecation warnings in squeeze related to apt_pkg
 # module
 import warnings
-warnings.filterwarnings('ignore', \
-    "Attribute '.*' of the 'apt_pkg.*' object is deprecated, use '.*' instead\.", \
-    DeprecationWarning)
-warnings.filterwarnings('ignore', \
-    "apt_pkg.*\(\) is deprecated\. .* apt_pkg.*\(\) for the replacement\.", \
-    DeprecationWarning)
+warnings.filterwarnings('ignore', ".*apt_pkg.* is deprecated.*", DeprecationWarning)
 
 ################################################################################