diff options
| -rw-r--r-- | ChangeLog | 2 | ||||
| -rw-r--r-- | memcache.py | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,3 +1,5 @@ + * Fixing Bug #491164: Typo fix, "compession" -> "compRession". + * Fixing Bug #509712: "TypeError: 'NoneType' object is unsubscriptable" Also fixed some other similar code to not have issues with that. diff --git a/memcache.py b/memcache.py index 173bf16..f12db11 100644 --- a/memcache.py +++ b/memcache.py @@ -69,7 +69,7 @@ except ImportError: _supports_compress = False # quickly define a decompress just in case we recv compressed data. def decompress(val): - raise _Error("received compressed data but I don't support compession (import error)") + raise _Error("received compressed data but I don't support compression (import error)") try: from cStringIO import StringIO |
