Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(87)

Unified Diff: infra/bots/common.py

Issue 1746063002: Swarming tests: Fix uninteresting hash file path (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: infra/bots/common.py
diff --git a/infra/bots/common.py b/infra/bots/common.py
index 6f606d9a735418dc38f99acaef77a2ba58668e43..24d49960582c6d24424215c22acc3f22cc3d65a5 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)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698