Possible Duplicate:
How to ignore deprecation warnings in Python
I'm using backup software written in Python - rdiff-backup. Unfortunately it does:
import sha
and my python2.6 has:
warnings.warn("the sha module is deprecated; use the hashlib module instead",
DeprecationWarning, 2)
In sha.py.
Is there any way to disable this warning - short of modifying sources? Some kind of switch to python that makes it ignore DeprecationWarnings ?

-W ignore::DeprecationWarningas an argument to Python. But it's better to fix the code. – Stephan202 Oct 7 at 17:40