Move cli.py into keystone.cmd

Naturally cli.py should fit into the keystone.cmd module, rather
than exist at the top level.

Change-Id: I5d7fde38033c4221d41e2c2290038497da4fb0c5
This commit is contained in:
Steve Martinelli 2015-07-17 12:44:34 -07:00
parent 7eb2a2c625
commit 014e19fc95
3 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ if os.path.exists(os.path.join(possible_topdir,
'__init__.py')):
sys.path.insert(0, possible_topdir)
from keystone import cli
from keystone.cmd import cli
from keystone.common import environment

View File

@ -19,7 +19,7 @@ import mock
from oslo_config import cfg
from six.moves import range
from keystone import cli
from keystone.cmd import cli
from keystone.common import dependency
from keystone.i18n import _
from keystone import resource