| Index: slave_utils.py
|
| ===================================================================
|
| --- slave_utils.py (revision 163311)
|
| +++ slave_utils.py (working copy)
|
| @@ -419,7 +419,7 @@
|
| path = os.path.join(dest_dir, path)
|
|
|
| # Trim the filename and last slash off to create a destination path.
|
| - path = path.rpartiton(os.sep + os.path.basename(path))[0]
|
| + path = path.rpartition(os.sep + os.path.basename(path))[0]
|
|
|
| # If we're on windows, we need to reverse slashes, gsutil wants posix paths.
|
| if chromium_utils.IsWindows():
|
|
|