Skip to content

Commit 0f23820

Browse files
committed
Fixed issue with .iteritems with Python3 I was experiencing
1 parent f362309 commit 0f23820

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)