summaryrefslogtreecommitdiff
path: root/docs/conf.py
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2010-11-17 19:00:28 -0500
committerChris McDonough <chrism@plope.com>2010-11-17 19:00:28 -0500
commit50fb1030b7491d5430d03a71a44e152180f22bc3 (patch)
tree92c94fb164acc91468a033d7bc250c381e3958d5 /docs/conf.py
parent2c9d148493aaa977c69e77072466685a3367ad0b (diff)
downloadpyramid-50fb1030b7491d5430d03a71a44e152180f22bc3.tar.gz
pyramid-50fb1030b7491d5430d03a71a44e152180f22bc3.tar.bz2
pyramid-50fb1030b7491d5430d03a71a44e152180f22bc3.zip
suppress deprecation warnings while building docs
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/conf.py b/docs/conf.py
index b4448b803..81096da3b 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -13,6 +13,9 @@
import sys, os
import datetime
+import warnings
+
+warnings.simplefilter('ignore', DeprecationWarning)
# skip raw nodes
from sphinx.writers.text import TextTranslator