| Index: tko/parsers/version_0.py
|
| diff --git a/tko/parsers/version_0.py b/tko/parsers/version_0.py
|
| index 7e8a5d884c598c69a2eb41a2a48e9d062ca4c20f..3341c228eaddc650ba9588e728261bc1dc162077 100644
|
| --- a/tko/parsers/version_0.py
|
| +++ b/tko/parsers/version_0.py
|
| @@ -251,8 +251,9 @@ class status_line(object):
|
| def parse_line(cls, line):
|
| if not status_line.is_status_line(line):
|
| return None
|
| - indent, line = re.search(r"^(\t*)(.*)$", line).groups()
|
| + indent, line = re.search(r"^(\t*)(.*)$", line, flags=re.DOTALL).groups()
|
| indent = len(indent)
|
| + line = line.strip()
|
|
|
| # split the line into the fixed and optional fields
|
| parts = line.split("\t")
|
|
|