Finish osc-lib transition for command.py

https://review.openstack.org/#/c/328318/ was the transition of
openstackclient/common/command.py to osc-lib but it was incomplete;
https://review.openstack.org/#/c/329885/ started to fix it but
was also incomplete.  Third time is charm?

Change-Id: Ib6c0266155c2155ae59067ce7b15bebca1e375e8
This commit is contained in:
Dean Troyer 2016-06-15 15:26:35 -05:00
parent 114eeeb023
commit e7ed403712
2 changed files with 3 additions and 3 deletions

View File

@ -17,10 +17,10 @@
import sys
from osc_lib.command import * # noqa
from osc_lib.command.command import * # noqa
sys.stderr.write(
"WARNING: %s is deprecated and will be removed after Jun 2017. "
"Please use osc_lib.command\n" % __name__
"Please use osc_lib.command.command\n" % __name__
)

View File

@ -14,9 +14,9 @@
import mock
from osc_lib.command import command
from osc_lib import exceptions
from openstackclient.common import command
from openstackclient.tests import fakes as test_fakes
from openstackclient.tests import utils as test_utils