diff options
author | Morgan Richomme <morgan.richomme@orange.com> | 2017-02-24 07:00:48 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-02-24 07:00:48 +0000 |
commit | 5ce37738d92d585d7fa6109fbcce06d20cb8e4b5 (patch) | |
tree | e311374f457f9f8d42adf26a3e38176fcab22752 /functest/cli/commands/cli_os.py | |
parent | c2477ac190dbf321b6bf136a906264b3d9e113cc (diff) | |
parent | fbd916ea2e0783c3beb517fd4c69f139eafe1688 (diff) |
Merge "Use new-style classes which inherit from object"
Diffstat (limited to 'functest/cli/commands/cli_os.py')
-rw-r--r-- | functest/cli/commands/cli_os.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/functest/cli/commands/cli_os.py b/functest/cli/commands/cli_os.py index aeb34974..f85f4041 100644 --- a/functest/cli/commands/cli_os.py +++ b/functest/cli/commands/cli_os.py @@ -18,7 +18,7 @@ import functest.utils.openstack_clean as os_clean import functest.utils.openstack_snapshot as os_snapshot -class CliOpenStack: +class CliOpenStack(object): def __init__(self): self.os_auth_url = CONST.OS_AUTH_URL |