convert: hide svn deprecation warnings

This commit is contained in:
Ronny Pfannschmidt 2009-04-27 12:02:16 +02:00
parent 1d760927a4
commit 19e96becc3

View File

@ -43,6 +43,11 @@ try:
import svn.ra
import svn.delta
import transport
import warnings
warnings.filterwarnings('ignore',
module='svn.core',
category=DeprecationWarning)
except ImportError:
pass