Reorganize code.
[audio.git] / apps / archive / utils.py
diff --git a/apps/archive/utils.py b/apps/archive/utils.py
deleted file mode 100755 (executable)
index 4710c20..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-from django.core.files.uploadedfile import UploadedFile
-
-class ExistingFile(UploadedFile):
-
-    def __init__(self, path, *args, **kwargs):
-        self.path = path
-        return super(ExistingFile, self).__init__(*args, **kwargs)
-
-    def temporary_file_path(self):
-        return self.path
-
-    def close(self):
-        pass