rrs/tools/rrs_: Reorder imports.

Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
This commit is contained in:
Aníbal Limón 2015-07-02 14:59:45 -05:00 committed by Paul Eggleton
parent dc0fd18ca1
commit bdde6f5c1b
3 changed files with 6 additions and 6 deletions

View File

@ -9,6 +9,8 @@
import sys import sys
import os.path import os.path
import optparse
import logging
sys.path.insert(0, os.path.realpath(os.path.join(os.path.dirname(__file__)))) sys.path.insert(0, os.path.realpath(os.path.join(os.path.dirname(__file__))))
from common import common_setup, update_repo from common import common_setup, update_repo
@ -18,8 +20,6 @@ from layerindex import utils, recipeparse
utils.setup_django() utils.setup_django()
from django.db import transaction from django.db import transaction
import settings import settings
import optparse
import logging
from layerindex.models import Recipe, LayerBranch, LayerItem from layerindex.models import Recipe, LayerBranch, LayerItem
from rrs.models import Maintainer, RecipeMaintainerHistory, RecipeMaintainer from rrs.models import Maintainer, RecipeMaintainerHistory, RecipeMaintainer

View File

@ -12,6 +12,8 @@
import sys import sys
import os.path import os.path
import optparse
import logging
sys.path.insert(0, os.path.realpath(os.path.join(os.path.dirname(__file__)))) sys.path.insert(0, os.path.realpath(os.path.join(os.path.dirname(__file__))))
from common import common_setup, update_repo, get_pv_type from common import common_setup, update_repo, get_pv_type
@ -21,8 +23,6 @@ from layerindex import utils
utils.setup_django() utils.setup_django()
from django.db import transaction from django.db import transaction
import settings import settings
import optparse
import logging
from layerindex.models import Recipe, LayerBranch from layerindex.models import Recipe, LayerBranch

View File

@ -14,6 +14,8 @@ from datetime import timedelta
import sys import sys
import os.path import os.path
import optparse
import logging
sys.path.insert(0, os.path.realpath(os.path.join(os.path.dirname(__file__)))) sys.path.insert(0, os.path.realpath(os.path.join(os.path.dirname(__file__))))
from common import common_setup, update_repo, get_pv_type from common import common_setup, update_repo, get_pv_type
@ -24,8 +26,6 @@ from layerindex.update import split_recipe_fn
utils.setup_django() utils.setup_django()
from django.db import transaction from django.db import transaction
import settings import settings
import optparse
import logging
from layerindex.models import Recipe, LayerItem, LayerBranch from layerindex.models import Recipe, LayerItem, LayerBranch
from rrs.models import Maintainer, RecipeUpgrade from rrs.models import Maintainer, RecipeUpgrade