Chromium Code Reviews| Index: tests/stub-generator/testcfg.py |
| =================================================================== |
| --- tests/stub-generator/testcfg.py (revision 629) |
| +++ tests/stub-generator/testcfg.py (working copy) |
| @@ -67,7 +67,8 @@ |
| t = open(tmp, 'r') |
| while True: |
| line = s.readline() |
| - if not (re.match('^\s+$', line) or line.startswith('//') or line.startswith('#')): |
| + if not (re.match('^\s+$', line) or line.startswith('//') |
| + or line.startswith('#')): |
| break |
| d.write(line) |
| d.write(t.read()) |