Merge branch 'release/1.0' into develop

This commit is contained in:
Jannis Leidel 2015-02-15 14:20:45 +01:00
commit 32d2e0c560
2 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,4 @@
from __future__ import absolute_import
from .base import AppConf # noqa
# following PEP 386
__version__ = "0.6"
__version__ = "1.0"

View File

@ -1,6 +1,9 @@
from django.core.exceptions import ImproperlyConfigured
import sys
import six
from django.core.exceptions import ImproperlyConfigured
from .utils import import_attribute
@ -108,7 +111,6 @@ class AppConf(six.with_metaclass(AppConfMetaClass)):
An app setting object to be used for handling app setting defaults
gracefully and providing a nice API for them.
"""
def __init__(self, **kwargs):
for name, value in six.iteritems(kwargs):
setattr(self, name, value)
@ -142,6 +144,5 @@ class AppConf(six.with_metaclass(AppConfMetaClass)):
"""
Hook for doing any extra configuration, returning a dictionary
containing the configured data.
"""
return self.configured_data