diff options
Diffstat (limited to 'test/NodeOps.py')
-rw-r--r-- | test/NodeOps.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/NodeOps.py b/test/NodeOps.py index e4a403f..6de7d09 100644 --- a/test/NodeOps.py +++ b/test/NodeOps.py @@ -70,7 +70,7 @@ if %(_E)s: real1 = [os.path.exists(str(N)) for N in Nodes] exists = [N.exists() for N in Nodes] real2 = [os.path.exists(str(N)) for N in Nodes] - for N,D,R,E,F in map(None, Nodes, derived, real1, exists, real2): + for N,D,R,E,F in zip(Nodes, derived, real1, exists, real2): print '%%s: %%s %%s %%s %%s'%%(N,D,R,E,F) foo.SharedLibrary(target = 'foo', source = 'foo%(_obj)s') bar.SharedLibrary(target = 'bar', source = 'bar%(_obj)s') |