Changeset 992
- Timestamp:
- 03/02/06 12:11:52
- Files:
-
- trunk/cherrypy/test/benchmark.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cherrypy/test/benchmark.py
r990 r992 61 61 output.startswith("'%s' is not recognized" % cmd) 62 62 # bash 63 or re.match(r"bash: .*: No such file", output)63 or re.match(r"bash: .*: (No such file|command not found)", output) 64 64 ): 65 65 raise IOError('%s must be on your system path.' % cmd) … … 160 160 val = val.group(1) 161 161 setattr(self, attr, val) 162 else: 163 setattr(self, attr, None) 162 164 163 165

