summaryrefslogtreecommitdiff
path: root/webob/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'webob/util.py')
-rw-r--r--webob/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/webob/util.py b/webob/util.py
index b740088..6b838b4 100644
--- a/webob/util.py
+++ b/webob/util.py
@@ -49,7 +49,7 @@ def warn_deprecation(text, version, stacklevel): # pragma: no cover
# version specifies when to start raising exceptions instead of warnings
if version == '1.2':
raise DeprecationWarning(text)
- elif version == '1.3':
+ elif version in ('1.3', '1.4'):
cls = DeprecationWarning
else:
cls = DeprecationWarning