From 9e2ad374fcdfa308cfe72ea6e5a5d871dd4975d0 Mon Sep 17 00:00:00 2001 From: David Kranz Date: Mon, 6 Oct 2014 17:06:20 -0400 Subject: [PATCH] Fix use of kwargs instead of **kwargs This but did not show well because it is used inside a handler that ignores and logs the exception. But the domain update call fails. Closes-Bug: #1375415 Change-Id: I16f01b6c2b6cc71ad60f42f4c875cbb85d2e016b --- tempest/api/identity/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tempest/api/identity/base.py b/tempest/api/identity/base.py index a225f12010..1e4973b44b 100644 --- a/tempest/api/identity/base.py +++ b/tempest/api/identity/base.py @@ -202,7 +202,7 @@ class DataGenerator(object): def _try_wrapper(func, item, **kwargs): try: if kwargs: - func(item['id'], kwargs) + func(item['id'], **kwargs) else: func(item['id']) except exceptions.NotFound: