move clean.py into keystone/common

The clean.py file was used by certain keystone services (identity
and resource). Common should house items that are common to the
services we offer.

Change-Id: I39041e3171312b5aadfab4c7d3cfb903fe9dafe6
This commit is contained in:
Steve Martinelli 2015-07-17 17:00:20 -07:00
parent 014e19fc95
commit 7a28fdb638
6 changed files with 5 additions and 5 deletions

View File

@ -20,7 +20,7 @@ from oslo_config import cfg
from oslo_log import log from oslo_log import log
import six import six
from keystone import clean from keystone.common import clean
from keystone.common import driver_hints from keystone.common import driver_hints
from keystone.common import ldap as common_ldap from keystone.common import ldap as common_ldap
from keystone.common import models from keystone.common import models

View File

@ -23,8 +23,8 @@ from oslo_config import cfg
from oslo_log import log from oslo_log import log
import six import six
from keystone import clean
from keystone.common import cache from keystone.common import cache
from keystone.common import clean
from keystone.common import dependency from keystone.common import dependency
from keystone.common import driver_hints from keystone.common import driver_hints
from keystone.common import manager from keystone.common import manager

View File

@ -17,7 +17,7 @@ import uuid
from oslo_config import cfg from oslo_config import cfg
from oslo_log import log from oslo_log import log
from keystone import clean from keystone.common import clean
from keystone.common import driver_hints from keystone.common import driver_hints
from keystone.common import ldap as common_ldap from keystone.common import ldap as common_ldap
from keystone.common import models from keystone.common import models

View File

@ -13,7 +13,7 @@
from oslo_config import cfg from oslo_config import cfg
from oslo_log import log from oslo_log import log
from keystone import clean from keystone.common import clean
from keystone.common import sql from keystone.common import sql
from keystone import exception from keystone import exception
from keystone.i18n import _LE from keystone.i18n import _LE

View File

@ -18,8 +18,8 @@ from oslo_config import cfg
from oslo_log import log from oslo_log import log
import six import six
from keystone import clean
from keystone.common import cache from keystone.common import cache
from keystone.common import clean
from keystone.common import dependency from keystone.common import dependency
from keystone.common import driver_hints from keystone.common import driver_hints
from keystone.common import manager from keystone.common import manager