Skip to content

Commit 8ef0aa1

Browse files
authored
Merge pull request #18 from travisjwalter/master
Fixed issue with .iteritems with Python3 I was experiencing
2 parents f362309 + 0f23820 commit 8ef0aa1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

crowd_api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ def set_user_activity(self, **kwargs):
283283
def create_user(self, **kwargs):
284284
user = {}
285285

286-
for k, v in kwargs.iteritems():
286+
for k, v in kwargs.items():
287287
user[k.replace('_', '-')] = v
288288

289289
if 'password' not in kwargs:

0 commit comments

Comments
 (0)