diff options
author | andy <andy@whiskeymedia.com> | 2012-08-23 20:38:36 -0700 |
---|---|---|
committer | andy <andy@whiskeymedia.com> | 2012-08-23 20:39:39 -0700 |
commit | 6a3875b9d964189f84c4509234e4d12db4222d89 (patch) | |
tree | 61633c003ad378c1ce161885e62aaf3e1caf0d89 /redis/exceptions.py | |
parent | fcb12f9ac8e081a35768b9ba501ac4dae3862420 (diff) | |
download | redis-py-6a3875b9d964189f84c4509234e4d12db4222d89.tar.gz |
implementing LUA scripting, still need tests.
Diffstat (limited to 'redis/exceptions.py')
-rw-r--r-- | redis/exceptions.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/redis/exceptions.py b/redis/exceptions.py index 746bf07..3462c36 100644 --- a/redis/exceptions.py +++ b/redis/exceptions.py @@ -31,3 +31,6 @@ class PubSubError(RedisError): class WatchError(RedisError): pass + +class NoScriptError(ResponseError): + pass |