~ricgard/maas/vs-repeat-ui-improvement--2.2

« back to all changes in this revision

Viewing changes to src/maas/settings.py

  • Committer: Gavin Panella
  • Date: 2012-01-19 10:37:57 UTC
  • mfrom: (16.3.22 test-bling)
  • Revision ID: gavin.panella@canonical.com-20120119103757-surtgos6dn4krulo
[r=rvba] Adds testtools and testresources, templates for new source files, import formatting utility from Launchpad, and fixes some lint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
import os
5
5
 
 
6
 
6
7
ADMINS = (
7
8
    # ('Your Name', 'your_email@example.com'),
8
9
)
123
124
ROOT_URLCONF = 'maas.urls'
124
125
 
125
126
TEMPLATE_DIRS = (
126
 
    # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
127
 
    # Always use forward slashes, even on Windows.
 
127
    # Put strings here, like "/home/html/django_templates" or
 
128
    # "C:/www/django/templates". Always use forward slashes, even on Windows.
128
129
    # Don't forget to use absolute paths, not relative paths.
129
130
    os.path.join(os.path.dirname(__file__), "templates"),
130
131
)