Skip to content

Commit fd6cc4c

Browse files
hhyyrylainenillwieckz
authored andcommitted
Fix fetch-externals script to work with python3
1 parent 7f15f43 commit fd6cc4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fetch-externals

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def checkout_deps(basepath):
2929

3030
# evaluate contents of DEPS file
3131
f = open(depsfile, 'r')
32-
exec(f.read())
32+
exec(f.read(), globals())
3333

3434
# process the path:url pairs in deps
3535
for path in sorted(deps.keys()):

0 commit comments

Comments
 (0)