Skip to content

Commit

Permalink
Update utils.py
Browse files Browse the repository at this point in the history
Working towards py3k support as its a major issue for my web application. Relates to pallets-eco#38
  • Loading branch information
jaitaiwan committed Jun 29, 2014
1 parent cc8c2e9 commit 26b42f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flask_social/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def strip_prefix(tup):


def update_recursive(d, u):
for k, v in u.iteritems():
for k, v in u.items():
if isinstance(v, collections.Mapping):
r = update_recursive(d.get(k, {}), v)
d[k] = r
Expand Down

0 comments on commit 26b42f4

Please sign in to comment.