Skip to content

Commit

Permalink
Update keys call in cdscan for Python 3
Browse files Browse the repository at this point in the history
  • Loading branch information
forsyth2 committed Jul 10, 2020
1 parent 17d9488 commit 881a5bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/cdscan.py
Original file line number Diff line number Diff line change
Expand Up @@ -1133,7 +1133,7 @@ def gensuffix(m, mo=mo):
nbsec, cdtime.Seconds) # fctau0 as type comptime
fc_time_attrs = []

varnames = f.variables.keys()
varnames = list(f.variables.keys())

# Try to force all axes to be included, but only small ones, length<100.
# This section was motivated by a need to preserve the cloud axes isccp_prs,isccp_tau.
Expand Down

0 comments on commit 881a5bd

Please sign in to comment.