diff options
| author | Dean Troyer <dtroyer@gmail.com> | 2016-05-13 14:14:06 -0500 |
|---|---|---|
| committer | Dean Troyer <dtroyer@gmail.com> | 2016-06-13 10:55:44 -0500 |
| commit | be192676bd2f2beeea0ec4265d5f78a8cf9af637 (patch) | |
| tree | 541800445aac954eb4484cc1c3c8f52a18babf3b /openstackclient/object | |
| parent | 59dffb9c62b48dbf5e99395e8f58e317e43cf036 (diff) | |
| download | python-openstackclient-be192676bd2f2beeea0ec4265d5f78a8cf9af637.tar.gz | |
osc-lib: parseractions
Leave parseractions.py and test_parseractions.py as a sanity check during the
deprecation period.
Change-Id: I1a7469b6d872284e0276502a1a287bc0b87f8f83
Diffstat (limited to 'openstackclient/object')
| -rw-r--r-- | openstackclient/object/v1/account.py | 2 | ||||
| -rw-r--r-- | openstackclient/object/v1/container.py | 2 | ||||
| -rw-r--r-- | openstackclient/object/v1/object.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/openstackclient/object/v1/account.py b/openstackclient/object/v1/account.py index 189f086b..8ef34687 100644 --- a/openstackclient/object/v1/account.py +++ b/openstackclient/object/v1/account.py @@ -13,11 +13,11 @@ """Account v1 action implementations""" +from osc_lib.cli import parseractions from osc_lib import utils import six from openstackclient.common import command -from openstackclient.common import parseractions class SetAccount(command.Command): diff --git a/openstackclient/object/v1/container.py b/openstackclient/object/v1/container.py index b3c6af74..f26b64a1 100644 --- a/openstackclient/object/v1/container.py +++ b/openstackclient/object/v1/container.py @@ -16,11 +16,11 @@ """Container v1 action implementations""" +from osc_lib.cli import parseractions from osc_lib import utils import six from openstackclient.common import command -from openstackclient.common import parseractions class CreateContainer(command.Lister): diff --git a/openstackclient/object/v1/object.py b/openstackclient/object/v1/object.py index 9141c1da..820780ff 100644 --- a/openstackclient/object/v1/object.py +++ b/openstackclient/object/v1/object.py @@ -16,11 +16,11 @@ """Object v1 action implementations""" +from osc_lib.cli import parseractions from osc_lib import utils import six from openstackclient.common import command -from openstackclient.common import parseractions class CreateObject(command.Lister): |
