aboutsummaryrefslogtreecommitdiff
path: root/tagging/.svn/text-base/settings.py.svn-base
diff options
context:
space:
mode:
Diffstat (limited to 'tagging/.svn/text-base/settings.py.svn-base')
-rw-r--r--tagging/.svn/text-base/settings.py.svn-base13
1 files changed, 0 insertions, 13 deletions
diff --git a/tagging/.svn/text-base/settings.py.svn-base b/tagging/.svn/text-base/settings.py.svn-base
deleted file mode 100644
index 1d6224c..0000000
--- a/tagging/.svn/text-base/settings.py.svn-base
+++ /dev/null
@@ -1,13 +0,0 @@
-"""
-Convenience module for access of custom tagging application settings,
-which enforces default settings when the main settings module does not
-contain the appropriate settings.
-"""
-from django.conf import settings
-
-# The maximum length of a tag's name.
-MAX_TAG_LENGTH = getattr(settings, 'MAX_TAG_LENGTH', 50)
-
-# Whether to force all tags to lowercase before they are saved to the
-# database.
-FORCE_LOWERCASE_TAGS = getattr(settings, 'FORCE_LOWERCASE_TAGS', False)