Skip to content

Commit

Permalink
Merge pull request #101 from bootsa/master
Browse files Browse the repository at this point in the history
Minor Python3 fix
  • Loading branch information
barseghyanartur authored Dec 11, 2017
2 parents 9b47421 + 3223aff commit e59fd11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fobi/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ def bulk_change_plugins(self, request):
groups_action = form.cleaned_data.pop('groups_action')
cleaned_data = dict(
(key, val)
for (key, val) in form.cleaned_data.iteritems()
for (key, val) in form.cleaned_data.items()
if val is not None
)

Expand Down

0 comments on commit e59fd11

Please sign in to comment.