print statement removal.

This commit is contained in:
percious17 2008-12-02 19:59:45 +00:00
parent 06b678bfef
commit 7e682f49ac

@ -15,7 +15,6 @@ class Shell(fixture.Shell):
def cmd(cls,*p):
p = map(lambda s: str(s),p)
ret = ' '.join([cls._cmd]+p)
print ret
return ret
def execute(self,shell_cmd,runshell=None):
"""A crude simulation of a shell command, to speed things up"""