X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=daklib%2Fconfig.py;h=dc90d49a5edd435aeb6a54fa2968310a5bb18912;hb=4a4f149ecf5a037eb02a6af3a6e4390de7e8ed2a;hp=fef7512d8b405ccf8e72e8d2164ecb5499cba3af;hpb=8d28609033fdaedc4ae0033762f5b8c038293843;p=dak.git diff --git a/daklib/config.py b/daklib/config.py index fef7512d..dc90d49a 100755 --- a/daklib/config.py +++ b/daklib/config.py @@ -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) ################################################################################ @@ -120,7 +115,6 @@ class Config(object): """ for field in [('db_revision', None, int), ('defaultsuitename', 'unstable', str), - ('signingkeyids', '', str), ('exportpath', '', str) ]: setattr(self, 'get_%s' % field[0], lambda s=None, x=field[0], y=field[1], z=field[2]: self.get_db_value(x, y, z))