Skip to content

Commit

Permalink
Merge pull request #47 from lsst/tickets/DM-8560
Browse files Browse the repository at this point in the history
Drop iterkeys() in SConstruct
  • Loading branch information
timj authored Jul 27, 2017
2 parents 5e9660c + 7f3b743 commit 5f8d25d
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 5f8d25d

Please sign in to comment.