summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDwayne C. Litzenberger <dlitz@dlitz.net>2012-02-18 12:42:23 -0500
committerDwayne C. Litzenberger <dlitz@dlitz.net>2012-02-18 12:42:23 -0500
commita6ddd108cf8e70c4037065143f968e994f5ef581 (patch)
tree3103cebf04f78f8f713874e2a1e3fe80358015cd
parent34d79c1c99b0baf3357507245e0f0419297ea4e2 (diff)
downloadpycrypto-a6ddd108cf8e70c4037065143f968e994f5ef581.tar.gz
Fix typo
-rw-r--r--src/_fastmath.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/_fastmath.c b/src/_fastmath.c
index c0f8c4e..8c1a517 100644
--- a/src/_fastmath.c
+++ b/src/_fastmath.c
@@ -1139,7 +1139,7 @@ getRNG (void)
if (!PyCallable_Check (new_func))
{
PyErr_SetString (PyExc_RuntimeError,
- "Cryptor.Random.new is not callable.");
+ "Crypto.Random.new is not callable.");
return NULL;
}
rng = PyObject_CallObject (new_func, NULL);