Skip to content

Commit 705140f

Browse files
author
Sebastian Schreck
committed
Fix Typo in URL for get_group_users
1 parent 8278d3c commit 705140f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

crowd_api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def get_group_users(self, **kwargs):
102102
if "groupname" not in kwargs:
103103
raise ValueError("Must pass username")
104104

105-
req = self.api_get("/group/user/direct?groupname={}&max-results={}}&start-index={}".format(
105+
req = self.api_get("/group/user/direct?groupname={}&max-results={}&start-index={}".format(
106106
kwargs['groupname'], kwargs.get('max_results', 1000), kwargs.get('start_index', 0)))
107107
if req.status_code == 200:
108108
for user in req.json()['users']:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from distutils.core import setup
22

3-
version = '0.0.9'
3+
version = '0.0.10'
44

55
setup(
66
name='crowd-api',

0 commit comments

Comments
 (0)