From a103d2bd3f5b64fbc7b3e06a12ed01b8d6f5a123 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Mon, 4 Mar 2013 12:28:43 +0100 Subject: [PATCH] Renamed AVATAR_CLEAN_REMOVED to AVATAR_CLEANUP_DELETED. --- README.txt | 5 ----- avatar/settings.py | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/README.txt b/README.txt index fa4be22..682da5e 100644 --- a/README.txt +++ b/README.txt @@ -5,8 +5,3 @@ Django-avatar is a reusable application for handling user avatars. It has the ability to default to Gravatar if no avatar is found for a certain user. Django-avatar automatically generates thumbnails and stores them to your default file storage backend for retrieval later. - - -Addons to this fork: ----------------- -we added a templatetag that returns the avatar model, therefore allowing us to display the avatar in any size using another image cropping/scaling app. \ No newline at end of file diff --git a/avatar/settings.py b/avatar/settings.py index 264ff98..81a9f9a 100644 --- a/avatar/settings.py +++ b/avatar/settings.py @@ -24,4 +24,4 @@ AVATAR_HASH_USERDIRNAMES = getattr(settings, 'AVATAR_HASH_USERDIRNAMES', False) AVATAR_ALLOWED_FILE_EXTS = getattr(settings, 'AVATAR_ALLOWED_FILE_EXTS', None) AVATAR_CACHE_TIMEOUT = getattr(settings, 'AVATAR_CACHE_TIMEOUT', 60 * 60) AVATAR_STORAGE = getattr(settings, 'AVATAR_STORAGE', settings.DEFAULT_FILE_STORAGE) -AVATAR_CLEAN_REMOVED = getattr(settings, 'AVATAR_CLEAN_REMOVED', False) +AVATAR_CLEANUP_DELETED = getattr(settings, 'AVATAR_CLEANUP_DELETED', False)