parse_results.py: minor internal change: work with unicode object instead of utf-8 str

This commit is contained in:
Denis Bilenko
2009-06-08 12:27:45 +07:00
parent 5fc536ccf6
commit e74e4ba066

View File

@@ -93,7 +93,6 @@ def main(db):
'parsed_command_record.id=command_record.id)')
for row in c.execute(SQL).fetchall():
id, command, stdout, exitcode = row
stdout = stdout.encode()
try:
testname, hub = parse_stdout(stdout)
if unittest_delim in stdout: