diff options
Diffstat (limited to 'test/Actions')
-rw-r--r-- | test/Actions/actions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Actions/actions.py b/test/Actions/actions.py index c805a05..7ae951a 100644 --- a/test/Actions/actions.py +++ b/test/Actions/actions.py @@ -94,7 +94,7 @@ class bld: self.cmd = r'%s build.py %%s 4 %%s' def __call__(self, env, target, source): cmd = self.get_contents(env, target, source) - print cmd + print cmd return os.system(cmd) def get_contents(self, env, target, source): return self.cmd %% (string.join(map(str, target)), |