Skip to content

Commit

Permalink
Drop iterkeys() in SConstruct
Browse files Browse the repository at this point in the history
Not needed in python2 or python3
  • Loading branch information
timj committed Jul 27, 2017
1 parent 5e9660c commit 7f3b743
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ import os
from lsst.sconsUtils import scripts
scripts.BasicSConstruct("sims_photUtils")
base_env = Environment(ENV=os.environ)
for key in os.environ.iterkeys():
for key in os.environ:
base_env = os.environ[key]

0 comments on commit 7f3b743

Please sign in to comment.