summaryrefslogtreecommitdiff
path: root/passlib/utils/md4.py
diff options
context:
space:
mode:
Diffstat (limited to 'passlib/utils/md4.py')
-rw-r--r--passlib/utils/md4.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/passlib/utils/md4.py b/passlib/utils/md4.py
index a63ad11..cd3d012 100644
--- a/passlib/utils/md4.py
+++ b/passlib/utils/md4.py
@@ -252,7 +252,9 @@ def _has_native_md4():
#since this is expected, don't bother w/ warning.
return False
#anything else should alert user
- warn("native md4 support disabled, incorrect value returned")
+ from passlib.exc import PasslibRuntimeWarning
+ warn("native md4 support disabled, incorrect value returned!",
+ PasslibRuntimeWarning)
return False
if _has_native_md4():