Skip to content

Commit

Permalink
Python 3 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
ardydedase committed Jul 6, 2016
1 parent bc8d3ff commit 271ff08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion skyscanner/skyscanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def get_additional_params(self, **params):
]

additional_params = dict(
(key, value) for key, value in params.iteritems() if key in polling_params)
(key, value) for key, value in params.items() if key in polling_params)

return additional_params

Expand Down

0 comments on commit 271ff08

Please sign in to comment.