diff options
author | Hiroshi Miura <miurahr@nttdata.co.jp> | 2015-08-03 12:23:04 +0900 |
---|---|---|
committer | Hiroshi Miura <miurahr@nttdata.co.jp> | 2015-08-04 11:34:51 +0900 |
commit | a056f1b3742812a2c861a0d01678dfed3b0087e4 (patch) | |
tree | 36376c0756eb4aa54b4bd1ae4503485300b77d64 /tests/unit/utils.py | |
parent | 161e08df1054dc8d47db494de3645a47fcaa1f3a (diff) | |
download | python-swiftclient-a056f1b3742812a2c861a0d01678dfed3b0087e4.tar.gz |
fix old style class definition(H238)
Change-Id: Ib5be06fa544f5eb3061c6a3077a3b9986382ecfe
Signed-off-by: Hiroshi Miura <miurahr@nttdata.co.jp>
Diffstat (limited to 'tests/unit/utils.py')
-rw-r--r-- | tests/unit/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/utils.py b/tests/unit/utils.py index 4f7c8ec..ac9aefd 100644 --- a/tests/unit/utils.py +++ b/tests/unit/utils.py @@ -503,7 +503,7 @@ class FakeKeystone(object): self.endpoint = endpoint self.token = token - class _Client(): + class _Client(object): def __init__(self, endpoint, token, **kwargs): self.auth_token = token self.endpoint = endpoint |