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

Unified Diff: tools/telemetry/telemetry/page/page_runner.py

Issue 17734002: [telemetry] Small fixes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: If we removed .pyc files, check if we can remove the entire directory. Created 7 years, 6 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 | « tools/telemetry/telemetry/core/chrome/inspector_network.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/page/page_runner.py
diff --git a/tools/telemetry/telemetry/page/page_runner.py b/tools/telemetry/telemetry/page/page_runner.py
index 81409270e9ec1bc0748969117a864339e255cd13..708d1f343af0ff4917c86263f13eb395da8ce0ab 100644
--- a/tools/telemetry/telemetry/page/page_runner.py
+++ b/tools/telemetry/telemetry/page/page_runner.py
@@ -318,7 +318,7 @@ def _CheckArchives(page_set, pages, results):
if not page.archive_path:
pages_missing_archive_path.append(page)
- if not os.path.isfile(page.archive_path):
+ elif not os.path.isfile(page.archive_path):
pages_missing_archive_data.append(page)
if pages_missing_archive_path:
« no previous file with comments | « tools/telemetry/telemetry/core/chrome/inspector_network.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698