From a855e92a985a9bdc9c5062cad268eba3d8e19f84 Mon Sep 17 00:00:00 2001 From: Will Kahn-Greene Date: Sun, 3 Jun 2012 15:53:34 -0400 Subject: Fix problems from pyflakes output --- mediagoblin/storage/cloudfiles.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'mediagoblin/storage/cloudfiles.py') diff --git a/mediagoblin/storage/cloudfiles.py b/mediagoblin/storage/cloudfiles.py index c800005f..ce517932 100644 --- a/mediagoblin/storage/cloudfiles.py +++ b/mediagoblin/storage/cloudfiles.py @@ -73,8 +73,7 @@ class CloudFilesStorage(StorageInterface): def file_exists(self, filepath): try: - object = self.container.get_object( - self._resolve_filepath(filepath)) + self.container.get_object( self._resolve_filepath(filepath)) return True except cloudfiles.errors.NoSuchObject: return False -- cgit v1.2.3