From 264da112fc54418270e1a2c0a376cd8a28a35236 Mon Sep 17 00:00:00 2001 From: Leandro Regueiro Date: Wed, 2 Apr 2014 12:16:21 +0200 Subject: [PATCH] Cleanup: Fix import order --- pootle/apps/pootle_app/management/commands/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pootle/apps/pootle_app/management/commands/setup.py b/pootle/apps/pootle_app/management/commands/setup.py index 8d548770492..aaf57c06bfd 100644 --- a/pootle/apps/pootle_app/management/commands/setup.py +++ b/pootle/apps/pootle_app/management/commands/setup.py @@ -29,8 +29,8 @@ from django.core.management.base import CommandError, NoArgsCommand from django.db.utils import DatabaseError -from pootle_misc.siteconfig import load_site_config from pootle.__version__ import build as NEW_POOTLE_BUILD +from pootle_misc.siteconfig import load_site_config class Command(NoArgsCommand):