~dylanmccall/harvest/gsoc-client-stuff

« back to all changes in this revision

Viewing changes to harvest/settings.py

  • Committer: Daniel Holbach
  • Date: 2010-02-22 13:58:52 UTC
  • Revision ID: daniel.holbach@canonical.com-20100222135852-dh80jevpinmr857j
simplify installation

Show diffs side-by-side

added added

removed removed

Lines of Context:
110
110
# Tell django.contrib.auth to use the OpenID signin URLs.
111
111
LOGIN_URL = '/openid/login'
112
112
LOGIN_REDIRECT_URL = '/'
 
113
 
 
114
import logging
 
115
try:
 
116
    from local_settings import *
 
117
except ImportError:
 
118
    logging.warning("No local_settings.py were found. See INSTALL for instructions.")