Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 #!/usr/bin/env python | |
| 2 # Copyright 2017 The Chromium Authors. All rights reserved. | |
| 3 # Use of this source code is governed by a BSD-style license that can be | |
| 4 # found in the LICENSE file. | |
| 5 | |
|
rkaplow
2017/03/30 01:26:20
remove log import
Steven Holte
2017/03/30 22:42:23
Done.
| |
| 6 import logging | |
| 7 import os | |
| 8 import sys | |
| 9 | |
| 10 import model | |
| 11 sys.path.append(os.path.join(os.path.dirname(__file__), '..', 'common')) | |
| 12 import presubmit_util | |
| 13 | |
| 14 def main(argv): | |
| 15 presubmit_util.DoPresubmitMain(argv, 'ukm.xml', 'ukm.old.xml', | |
| 16 'pretty_print.py', model.UpdateXML) | |
| 17 | |
| 18 | |
| 19 if '__main__' == __name__: | |
| 20 sys.exit(main(sys.argv)) | |
| OLD | NEW |