| Index: remoting/tools/uuidgen.py
|
| diff --git a/tools/isolate/data/isolate/fail.py b/remoting/tools/uuidgen.py
|
| similarity index 74%
|
| copy from tools/isolate/data/isolate/fail.py
|
| copy to remoting/tools/uuidgen.py
|
| index a82098ac9697f9dc9f1fe78a21039a0dca799e17..ed1e415ec327013ebc8893f6055edf77f93bccfd 100755
|
| --- a/tools/isolate/data/isolate/fail.py
|
| +++ b/remoting/tools/uuidgen.py
|
| @@ -3,13 +3,16 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| -import sys
|
| +"""
|
| +uuidgen.py -- UUID generation utility.
|
| +"""
|
|
|
| +import sys
|
| +import uuid
|
|
|
| def main():
|
| - print 'Failing'
|
| - return 1
|
| -
|
| + print uuid.uuid4()
|
| + return 0
|
|
|
| if __name__ == '__main__':
|
| sys.exit(main())
|
|
|