| Index: build/android/adb_profile_chrome.py
|
| diff --git a/build/android/adb_profile_chrome.py b/build/android/adb_profile_chrome.py
|
| index c8cea89ceb2406430293fed702220fae239ea433..dec6117b890083f4193b4ca9dc47d4af3c11a6f5 100755
|
| --- a/build/android/adb_profile_chrome.py
|
| +++ b/build/android/adb_profile_chrome.py
|
| @@ -9,6 +9,7 @@ import logging
|
| import optparse
|
| import os
|
| import re
|
| +import shutil
|
| import sys
|
| import threading
|
| import time
|
| @@ -218,7 +219,7 @@ def _PullTraces(controllers, output, compress):
|
| _ArchiveFiles(trace_files, result)
|
| elif output:
|
| result = output
|
| - os.rename(trace_files[0], result)
|
| + shutil.move(trace_files[0], result)
|
| else:
|
| result = trace_files[0]
|
|
|
|
|