summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Fayolle <alexandre.fayolle@logilab.fr>2008-05-01 18:07:25 +0200
committerAlexandre Fayolle <alexandre.fayolle@logilab.fr>2008-05-01 18:07:25 +0200
commit602c4cf71a31748dbd0fca00abb4d64f5a76e31b (patch)
treecbdf6041c988027d71dc7ecae528238b8003f3b9
parent6e297ce0e97b49083ea8658e2a09534183364b2c (diff)
downloadlogilab-common-602c4cf71a31748dbd0fca00abb4d64f5a76e31b.tar.gz
deprecation message fix
-rw-r--r--logger.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/logger.py b/logger.py
index 69ec06f..3b190fa 100644
--- a/logger.py
+++ b/logger.py
@@ -18,7 +18,7 @@ everything on stdout, the other using syslog.
"""
from warnings import warn
-warn('logger module is deprecated and will disappear in a near release. \
+warn('logger module is deprecated and will disappear in a future release. \
use logging module instead.',
DeprecationWarning, stacklevel=1)