summaryrefslogtreecommitdiff
path: root/html.py
diff options
context:
space:
mode:
authorSylvain <syt@logilab.fr>2006-11-09 22:56:14 +0100
committerSylvain <syt@logilab.fr>2006-11-09 22:56:14 +0100
commit000db8e14c6899c1a3afa785e4666521eabd3171 (patch)
tree756437b82e51aba08e58d47978e7ae93dc53325d /html.py
parentbb9c9e88f4c1bc9115dbb05bb1dba985b24e0b73 (diff)
downloadlogilab-common-000db8e14c6899c1a3afa785e4666521eabd3171.tar.gz
fix deprecation warnings
Diffstat (limited to 'html.py')
-rw-r--r--html.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/html.py b/html.py
index 6348906..70a638d 100644
--- a/html.py
+++ b/html.py
@@ -15,8 +15,8 @@
"""
from warnings import warn
-warn('this module is deprecated and will disappear in a near release',
- DeprecationWarning, stacklevel=1)
+warn('html module is deprecated and will disappear in a near release',
+ DeprecationWarning, stacklevel=2)
__revision__ = "$Id: html.py,v 1.5 2003-09-12 11:54:47 syt Exp $"