| Index: third_party/WebKit/Source/bindings/scripts/code_generator.py
|
| diff --git a/third_party/WebKit/Source/bindings/scripts/code_generator.py b/third_party/WebKit/Source/bindings/scripts/code_generator.py
|
| index 3d7aff3be176b6aef6b3ad84b1b5e377947d5dfe..4ef1c9aef6c7447758bd2c8ffd474c46c2a97065 100644
|
| --- a/third_party/WebKit/Source/bindings/scripts/code_generator.py
|
| +++ b/third_party/WebKit/Source/bindings/scripts/code_generator.py
|
| @@ -45,7 +45,7 @@ def generate_indented_conditional(code, conditional):
|
| # Indent if statement to level of original code
|
| indent = re.match(' *', code).group(0)
|
| return ('%sif (%s) {\n' % (indent, conditional) +
|
| - ' %s\n' % '\n '.join(code.splitlines()) +
|
| + ' %s\n' % '\n '.join(code.splitlines()) +
|
| '%s}\n' % indent)
|
|
|
|
|
|
|