Lines Matching refs:commandline
32 def system(commandline):33 """Same as os.system(commandline) but logs the command first.35 @param commandline: commandline to be called.37 logging.info(commandline)38 return os.system(commandline)