Home | History | Annotate | Download | only in utils

Lines Matching refs:commandline

28 def system(commandline):
29 """Same as os.system(commandline) but logs the command first.
31 @param commandline: commandline to be called.
33 logging.info(commandline)
34 return os.system(commandline)