Skip to content

Commit

Permalink
Fix itervalues usage in scene for python 3
Browse files Browse the repository at this point in the history
  • Loading branch information
djhoese committed Apr 19, 2016
1 parent 7443bdb commit 31c967e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion satpy/scene.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def __str__(self):
return "\n".join(res)

def __iter__(self):
return self.datasets.itervalues()
return self.datasets.values()

def __getitem__(self, key):
return self.datasets[key]
Expand Down

0 comments on commit 31c967e

Please sign in to comment.