ObjectWeb icon indicating copy to clipboard operation
ObjectWeb copied to clipboard

getall(**kwargs)

Open ManuelZ opened this issue 11 years ago • 0 comments

Hi, I'm not sure, maybe I don' know how to properly use kwargs but seems like this (in webapi.py, getall): for key, val in kwargs: http_params.append(get(key, val))

should be

for key, val in kwargs.iteritems():
    http_params.append(get(key, val))

Learning a lot with your library :)

ManuelZ avatar Sep 14 '14 14:09 ManuelZ