Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
kbairak committed Dec 23, 2022
1 parent 0e70e7e commit 22bd459
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion transifex/api/jsonapi/collections.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def page(self, *args, **kwargs):
def _param_method(param_name):
def _method(self, *fields):
params = dict(self._params)
params[param_name] = ",".join(fields)
params[param_name] = ",".join((str(field) for field in fields))
return self.__class__(self.API, self._url, params)

return _method
Expand Down

0 comments on commit 22bd459

Please sign in to comment.