=== modified file 'webapp/graphite/settings.py'
--- webapp/graphite/settings.py	2010-01-15 22:27:46 +0000
+++ webapp/graphite/settings.py	2010-01-25 21:24:47 +0000
@@ -75,19 +75,20 @@
 DATABASE_HOST = ''				# Set to empty string for localhost. Not used with sqlite3.
 DATABASE_PORT = ''				# Set to empty string for default. Not used with sqlite3.
 
+from graphite.storage import Store
+
+LOCAL_STORE = Store(DATA_DIRS)
+STORE = Store(DATA_DIRS, remote_hosts=CLUSTER_SERVERS)
+
+TEMPLATE_DIRS = (
+  join(WEB_DIR, 'templates'),
+)
 #Pull in overrides from local_settings.py
 try:
   from graphite.local_settings import *
 except ImportError:
   print >> sys.stderr, "Could not import graphite.local_settings, using defaults!"
 
-
-from graphite.storage import Store
-
-LOCAL_STORE = Store(DATA_DIRS)
-STORE = Store(DATA_DIRS, remote_hosts=CLUSTER_SERVERS)
-
-
 #Django settings below, do not touch!
 APPEND_SLASH = False
 TEMPLATE_DEBUG = DEBUG
@@ -141,9 +142,6 @@
 
 ROOT_URLCONF = 'graphite.urls'
 
-TEMPLATE_DIRS = (
-  join(WEB_DIR, 'templates'),
-)
 
 INSTALLED_APPS = (
   'graphite.metrics',
