~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp_sitecustomize.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2012-01-03 05:05:39 UTC
  • mfrom: (14514.3.5 new-python-apt)
  • Revision ID: launchpad@pqm.canonical.com-20120103050539-y6ipuo5e9illcrsr
[r=benji][bug=551510] Port to new python-apt API.

Show diffs side-by-side

added added

removed removed

Lines of Context:
129
129
    filter_pattern = '.*(Zope 3.6|provide.*global site manager).*'
130
130
    warnings.filterwarnings(
131
131
        'ignore', filter_pattern, category=DeprecationWarning)
132
 
    # XXX wgrant 2010-03-30 bug=551510:
133
 
    # Also filter apt_pkg warnings, since Lucid's python-apt has a new API.
134
 
    warnings.filterwarnings(
135
 
        'ignore', '.*apt_pkg.*', category=DeprecationWarning)
136
132
 
137
133
 
138
134
def customize_logger():