 Chromium Code Reviews
 Chromium Code Reviews Issue 1454433002:
  Python 3 compatibility 
  Base URL: https://chromium.googlesource.com/external/gyp.git@master
    
  
    Issue 1454433002:
  Python 3 compatibility 
  Base URL: https://chromium.googlesource.com/external/gyp.git@master| Index: test/win/idl-excluded/copy-file.py | 
| diff --git a/test/win/idl-excluded/copy-file.py b/test/win/idl-excluded/copy-file.py | 
| index 5a5feae1f21eed4dbd014afa9c51917fb5ecfe51..7bdfbfd4bd65bd13f2f576de818d8fe928fb1567 100644 | 
| --- a/test/win/idl-excluded/copy-file.py | 
| +++ b/test/win/idl-excluded/copy-file.py | 
| @@ -6,6 +6,6 @@ | 
| import sys | 
| contents = open(sys.argv[1], 'r').read() | 
| -open(sys.argv[2], 'wb').write(contents) | 
| +open(sys.argv[2], 'w').write(contents) | 
| sys.exit(0) |