summaryrefslogtreecommitdiff
path: root/openstackclient/object/v1/object.py
diff options
context:
space:
mode:
Diffstat (limited to 'openstackclient/object/v1/object.py')
-rw-r--r--openstackclient/object/v1/object.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/openstackclient/object/v1/object.py b/openstackclient/object/v1/object.py
index 3747e19e..01e537ee 100644
--- a/openstackclient/object/v1/object.py
+++ b/openstackclient/object/v1/object.py
@@ -22,7 +22,6 @@ from osc_lib.cli import parseractions
from osc_lib.command import command
from osc_lib import exceptions
from osc_lib import utils
-import six
from openstackclient.i18n import _
@@ -287,7 +286,7 @@ class ShowObject(command.ShowOne):
if 'properties' in data:
data['properties'] = format_columns.DictColumn(data['properties'])
- return zip(*sorted(six.iteritems(data)))
+ return zip(*sorted(data.items()))
class UnsetObject(command.Command):