| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # | 2 # |
| 3 # Copyright (C) 2011 Google Inc. All rights reserved. | 3 # Copyright (C) 2011 Google Inc. All rights reserved. |
| 4 # | 4 # |
| 5 # Redistribution and use in source and binary forms, with or without | 5 # Redistribution and use in source and binary forms, with or without |
| 6 # modification, are permitted provided that the following conditions are | 6 # modification, are permitted provided that the following conditions are |
| 7 # met: | 7 # met: |
| 8 # | 8 # |
| 9 # * Redistributions of source code must retain the above copyright | 9 # * Redistributions of source code must retain the above copyright |
| 10 # notice, this list of conditions and the following disclaimer. | 10 # notice, this list of conditions and the following disclaimer. |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 return 1 | 53 return 1 |
| 54 | 54 |
| 55 output_name = argv[1] | 55 output_name = argv[1] |
| 56 output = open(output_name, 'w') | 56 output = open(output_name, 'w') |
| 57 write_devtools_extension_api(output, argv[2:]) | 57 write_devtools_extension_api(output, argv[2:]) |
| 58 output.close() | 58 output.close() |
| 59 | 59 |
| 60 | 60 |
| 61 if __name__ == '__main__': | 61 if __name__ == '__main__': |
| 62 sys.exit(main(sys.argv)) | 62 sys.exit(main(sys.argv)) |
| OLD | NEW |