Skip to content

Commit

Permalink
Merge pull request #680 from MDAnalysis/issue-632-itervalues
Browse files Browse the repository at this point in the history
removed usage of itervalues (py3)
  • Loading branch information
richardjgowers committed Jan 29, 2016
2 parents 7b26bcf + 9844015 commit 481b560
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package/MDAnalysis/analysis/hbonds/hbond_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -1095,7 +1095,7 @@ def timesteps_by_type(self):

out_nrows = 0
# count number of timesteps per key to get length of output table
for ts_list in hbonds.itervalues():
for ts_list in six.itervalues(hbonds):
out_nrows += len(ts_list)

# build empty output table
Expand Down

0 comments on commit 481b560

Please sign in to comment.