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
This commit is contained in:
David Kranz 2014-10-06 17:06:20 -04:00
parent 408c7f259a
commit 9e2ad374fc
1 changed files with 1 additions and 1 deletions

View File

@ -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: