# HG changeset patch # User Augie Fackler # Date 1242675237 18000 # Node ID c4061e57974c27e95d6eb2fb95ad0ea00632b791 # Parent 067914ecb4eb6beb49f7a19962997989ba5487d5 svnwrap: Filter out deprecation warnings on 2.6. diff --git a/svnwrap/svn_swig_wrapper.py b/svnwrap/svn_swig_wrapper.py --- a/svnwrap/svn_swig_wrapper.py +++ b/svnwrap/svn_swig_wrapper.py @@ -9,6 +9,11 @@ import urllib import hashlib import collections +import warnings +warnings.filterwarnings('ignore', + module='svn.core', + category=DeprecationWarning) + from svn import client from svn import core from svn import delta