summaryrefslogtreecommitdiff
path: root/openstackclient/object/v1/account.py
diff options
context:
space:
mode:
Diffstat (limited to 'openstackclient/object/v1/account.py')
-rw-r--r--openstackclient/object/v1/account.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/openstackclient/object/v1/account.py b/openstackclient/object/v1/account.py
index 95be8132..d6bc9fd7 100644
--- a/openstackclient/object/v1/account.py
+++ b/openstackclient/object/v1/account.py
@@ -16,7 +16,6 @@
from osc_lib.cli import format_columns
from osc_lib.cli import parseractions
from osc_lib.command import command
-import six
from openstackclient.i18n import _
@@ -50,7 +49,7 @@ class ShowAccount(command.ShowOne):
if 'properties' in data:
data['properties'] = format_columns.DictColumn(
data.pop('properties'))
- return zip(*sorted(six.iteritems(data)))
+ return zip(*sorted(data.items()))
class UnsetAccount(command.Command):