diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2008-08-20 21:12:45 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2008-08-20 21:12:45 +0000 |
| commit | eb85af18652f4096b6abbad8915a554b4d51865e (patch) | |
| tree | b4231e5f72b6eecf695d97e3c333c917a5b5c473 | |
| parent | e94d29350446df6a87e0fd2b867a47e06295ae98 (diff) | |
Fixed #8457 -- Fixed a missing import.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8451 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/sessions/backends/file.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/django/contrib/sessions/backends/file.py b/django/contrib/sessions/backends/file.py index 1540139710..36a03b6353 100644 --- a/django/contrib/sessions/backends/file.py +++ b/django/contrib/sessions/backends/file.py @@ -1,3 +1,4 @@ +import errno import os import tempfile |
