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)