Suppress deprecation warning for twisted.web.error.NoResource when using Twisted >= 9.0.0.

This commit is contained in:
david-sarah 2010-05-16 13:56:25 -07:00
parent 907eff52c6
commit e880fc2ce4
1 changed files with 3 additions and 0 deletions

View File

@ -22,6 +22,9 @@ warnings.filterwarnings("ignore", category=DeprecationWarning,
warnings.filterwarnings("ignore", category=DeprecationWarning,
message="the sha module is deprecated; use the hashlib module instead",
append=True)
warnings.filterwarnings("ignore", category=DeprecationWarning,
message="twisted.web.error.NoResource is deprecated since Twisted 9.0. See twisted.web.resource.NoResource.",
append=True)
try:
import nevow
from twisted.persisted import sob