From 51a699dea91eefb1e95939a93599330336b73228 Mon Sep 17 00:00:00 2001
From: Adrian Holovaty <adrian@holovaty.com>
Date: Thu, 12 Jan 2006 02:35:14 +0000
Subject: [PATCH] Fixed #1203 -- Fixed two typos in cache.py. Thanks, Eugene

git-svn-id: http://code.djangoproject.com/svn/django/trunk@1922 bcc190cf-cafb-0310-a4f2-bffc1f526a37
---
 django/core/cache.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/django/core/cache.py b/django/core/cache.py
index 14df9ddb1d..4c16f44c4e 100644
--- a/django/core/cache.py
+++ b/django/core/cache.py
@@ -29,7 +29,7 @@ The CACHE_BACKEND setting is a quasi-URI; examples are:
                                     testing. Note that this cache backend is
                                     NOT threadsafe!
 
-    locmem:///                      A more sophisticaed local memory cache;
+    locmem:///                      A more sophisticated local memory cache;
                                     this is multi-process- and thread-safe.
 
     dummy:///                       Doesn't actually cache. For use in test
@@ -350,7 +350,7 @@ class _FileCache(_SimpleCache):
             pickle.dump(now + timeout, f, 2)
             pickle.dump(value, f, 2)
         except (IOError, OSError):
-            raise
+            pass
 
     def delete(self, key):
         try: