diff --git a/novaclient/v2/shell.py b/novaclient/v2/shell.py index 4f65237d2..c848521a8 100644 --- a/novaclient/v2/shell.py +++ b/novaclient/v2/shell.py @@ -4524,10 +4524,10 @@ def do_interface_list(cs, args): server = _find_server(cs, args.server) res = server.interface_list() - if isinstance(res, list): - # The "tag" field is in the response starting with microversion 2.70. - show_tag = cs.api_version >= api_versions.APIVersion('2.70') - _print_interfaces(res, show_tag=show_tag) + + # The "tag" field is in the response starting with microversion 2.70. + show_tag = cs.api_version >= api_versions.APIVersion('2.70') + _print_interfaces(res, show_tag=show_tag) @utils.arg('server', metavar='', help=_('Name or ID of server.'))