aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra
diff options
context:
space:
mode:
authorGravatar borenet <borenet@google.com>2016-02-29 08:19:42 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2016-02-29 08:19:42 -0800
commit17597fe29dbdf03ba2842a9193705200c4db5fbb (patch)
tree685a8533bc03ce5f2ba809b845db1bf18bccf54b /infra
parent9466571f8ebde1429cca7b6dcd2d4b85bad1b088 (diff)
Swarming tests: Fix uninteresting hash file path
Diffstat (limited to 'infra')
-rw-r--r--infra/bots/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/infra/bots/common.py b/infra/bots/common.py
index 6f606d9a73..24d4996058 100644
--- a/infra/bots/common.py
+++ b/infra/bots/common.py
@@ -296,7 +296,7 @@ class BotInfo(object):
# Obtain the list of already-generated hashes.
hash_filename = 'uninteresting_hashes.txt'
- host_hashes_file = self.tmp_dir.join(hash_filename)
+ host_hashes_file = os.path.join(self.tmp_dir, hash_filename)
hashes_file = self.flavor.device_path_join(
self.device_dirs.tmp_dir, hash_filename)