~phanatic/django-configglue/more-supported-releases

« back to all changes in this revision

Viewing changes to django_configglue/management/commands/settings.py

  • Committer: Ricardo Kirkner
  • Date: 2011-07-27 01:02:05 UTC
  • mfrom: (57.1.3 configglue-1.0-compatible)
  • Revision ID: ricardo.kirkner@canonical.com-20110727010205-03cj5bg5tlntja6w
Updated django-configglue to make it compatible with configglue 1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright 2010 Canonical Ltd.  This software is licensed under the
 
1
# Copyright 2010-2011 Canonical Ltd.  This software is licensed under the
2
2
# GNU Lesser General Public License version 3 (see the file LICENSE).
3
3
 
4
4
import os
5
5
import sys
6
6
from optparse import make_option, OptionParser
7
7
 
8
 
from configglue.pyschema.glue import schemaconfigglue
 
8
from configglue.glue import schemaconfigglue
9
9
from django.conf import settings, global_settings
10
10
from django.core.management.base import BaseCommand, CommandError
11
11