| Index: tools/testing/frogpad/frogpad.py
|
| diff --git a/tools/testing/frogpad/frogpad.py b/tools/testing/frogpad/frogpad.py
|
| index e683a155b54581374e423c8141e7b56011357e3a..9e2e3a53e3d05060b27a3fdc012255e16538f1c9 100755
|
| --- a/tools/testing/frogpad/frogpad.py
|
| +++ b/tools/testing/frogpad/frogpad.py
|
| @@ -96,7 +96,7 @@ HTML = """<!DOCTYPE html>
|
| # This finds everything after the word "Output:" in the html page.
|
| # (Note, because the javascript we're fishing out spans multiple lines
|
| # we need to use the DOTALL switch here.)
|
| -OUTPUT_JAVASCRIPT_REGEX = re.compile(".*\nOutput:(.*)#EOF", re.DOTALL)
|
| +OUTPUT_JAVASCRIPT_REGEX = re.compile(".*\nOutput:\n(.*)\n#EOF", re.DOTALL)
|
|
|
| # If the frogpad.dart encounters a compilation error, the generated
|
| # javascript will start with the word 'throw'.
|
|
|