Chromium Code Reviews| Index: tools/telemetry/update_docs |
| diff --git a/remoting/tools/uuidgen.py b/tools/telemetry/update_docs |
| similarity index 64% |
| copy from remoting/tools/uuidgen.py |
| copy to tools/telemetry/update_docs |
| index ed1e415ec327013ebc8893f6055edf77f93bccfd..87349e9b8e32505bc67d15f39a67d623ea78cac9 100755 |
| --- a/remoting/tools/uuidgen.py |
| +++ b/tools/telemetry/update_docs |
| @@ -2,17 +2,10 @@ |
| # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
|
tonyg
2013/06/18 16:09:11
2013
|
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| - |
| -""" |
| -uuidgen.py -- UUID generation utility. |
| -""" |
| - |
| +import os |
| import sys |
| -import uuid |
| -def main(): |
| - print uuid.uuid4() |
| - return 0 |
| +from build import update_docs |
| if __name__ == '__main__': |
| - sys.exit(main()) |
| + sys.exit(update_docs.Main(sys.argv[1:])) |