From 41b8f3655c5bd58fc5b1ae874c2854aa8477612d Mon Sep 17 00:00:00 2001 From: Bruno Clermont Date: Mon, 26 Nov 2012 23:11:26 +0800 Subject: [PATCH] fix indentation --- configurations/importer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configurations/importer.py b/configurations/importer.py index 7013392..62b1dba 100644 --- a/configurations/importer.py +++ b/configurations/importer.py @@ -161,6 +161,6 @@ class SettingsLoader(object): raise ImproperlyConfigured( "Couldn't execute callable '%s' in '%s.%s': %s" % (value, mod.__name__, self.name, err)) - setattr(mod, name, value) + setattr(mod, name, value) setattr(mod, 'CONFIGURATION', '%s.%s' % (fullname, self.name)) return mod