OLD | NEW |
1 #!/usr/bin/python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 | 6 |
7 import hashlib | 7 import hashlib |
8 import math | 8 import math |
9 import optparse | 9 import optparse |
10 import os | 10 import os |
11 import re | 11 import re |
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
327 print 'done' | 327 print 'done' |
328 else: | 328 else: |
329 if options.verbose: | 329 if options.verbose: |
330 print '' | 330 print '' |
331 print 'No changes.' | 331 print 'No changes.' |
332 return 0 | 332 return 0 |
333 | 333 |
334 | 334 |
335 if __name__ == '__main__': | 335 if __name__ == '__main__': |
336 sys.exit(Main(sys.argv)) | 336 sys.exit(Main(sys.argv)) |
OLD | NEW |