Skip to content
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.

Commit

Permalink
another py3 compatability fix for Airdrops
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Oxborrow committed Jul 29, 2018
1 parent b679595 commit 18c9b03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ost_kit_python/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def execute(self, amount, user_ids, **kwargs):
# required params
params = {
'amount': amount,
'user_ids': user_ids if isinstance(user_ids, basestring) else ",".join(user_ids), # allows string or list
'user_ids': ",".join(user_ids) if isinstance(user_ids, (list, tuple)) else user_ids, # allows string or list
}

# merge additional params
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="ost-kit-python",
version="0.0.3",
version="0.0.4",
author="Aaron Oxborrow",
description="OST Kit API wrapper for Python",
long_description=long_description,
Expand Down

0 comments on commit 18c9b03

Please sign in to comment.