diff options
author | Adrian Holovaty <adrian@holovaty.com> | 2008-07-22 03:24:09 +0000 |
---|---|---|
committer | Adrian Holovaty <adrian@holovaty.com> | 2008-07-22 03:24:09 +0000 |
commit | 29f0e8182f49e2927ae46e748d09d0672d4fc127 (patch) | |
tree | 81eab07cc98097ffd2e63514ace56b7dafbc76fd /django/core/files/uploadhandler.py | |
parent | cf2a05952eb35f1532e0127e8e871c9c153afac7 (diff) | |
download | django-29f0e8182f49e2927ae46e748d09d0672d4fc127.tar.gz |
Fixed #7847 -- Removed a whole bunch of unused imports from throughout the codebase. Thanks, julien
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8046 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/core/files/uploadhandler.py')
-rw-r--r-- | django/core/files/uploadhandler.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/django/core/files/uploadhandler.py b/django/core/files/uploadhandler.py index 008a05a148..fa4d2df804 100644 --- a/django/core/files/uploadhandler.py +++ b/django/core/files/uploadhandler.py @@ -1,8 +1,7 @@ """ Base file upload handler classes, and the built-in concrete subclasses """ -import os -import tempfile + try: from cStringIO import StringIO except ImportError: |