Skip to content
This repository has been archived by the owner on Jan 14, 2019. It is now read-only.

Commit

Permalink
removed global local_settings include
Browse files Browse the repository at this point in the history
  • Loading branch information
bartTC committed Aug 27, 2008
1 parent 9c8061e commit 00e2cd4
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions django_de/settings.py
Expand Up @@ -24,6 +24,10 @@
else:
DEBUG = False
PREPEND_WWW = True
try:
from local_settings import *
except ImportError:
pass

DOCS_SVN_PATH = "docs/live/"

Expand Down Expand Up @@ -128,9 +132,4 @@

PAGINATION_DEFAULT_PAGINATION = 10
PAGINATION_DEFAULT_WINDOW = 3
PAGINATION_DEFAULT_ORPHANS = 1

try:
from local_settings import *
except ImportError:
pass
PAGINATION_DEFAULT_ORPHANS = 1

0 comments on commit 00e2cd4

Please sign in to comment.