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
parent 72b0029672
commit 2607f7763b
3 changed files with 6 additions and 6 deletions

View File

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

View File

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

View File

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