| Index: tools/bots/dart_sdk.py
|
| diff --git a/tools/bots/dart_sdk.py b/tools/bots/dart_sdk.py
|
| index fd2f3c499c33120885b619e98f8d21a2a7a419cb..b2a3b06922580b8e50fdcae5aa4c8c0d1c34529b 100644
|
| --- a/tools/bots/dart_sdk.py
|
| +++ b/tools/bots/dart_sdk.py
|
| @@ -107,7 +107,7 @@ def UploadApiDocs(dir_name):
|
|
|
| # Update latest.txt to contain the newest revision.
|
| with utils.TempDir('latest_file') as temp_dir:
|
| - latest_file = join(temp_dir, 'latest.txt')
|
| + latest_file = os.path.join(temp_dir, 'latest.txt')
|
| with open(latest_file, 'w') as f:
|
| f.write('%s' % revision)
|
| DartArchiveFile(latest_file, apidocs_destination_latestfile)
|
|
|