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

Unified Diff: tools/telemetry/telemetry/__init__.py

Issue 143823017: [Telemetry] Require python 2.7. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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: tools/telemetry/telemetry/__init__.py
diff --git a/tools/telemetry/telemetry/__init__.py b/tools/telemetry/telemetry/__init__.py
index e3adccb7c3a3030d9a2a88171f61d9105ad63a25..e48d6a5587b224b9881096d9245d8ef09b4d2369 100644
--- a/tools/telemetry/telemetry/__init__.py
+++ b/tools/telemetry/telemetry/__init__.py
@@ -10,9 +10,9 @@ import os
import sys
-# Ensure Python >= 2.6
-if sys.version_info < (2, 6):
- logging.critical('Need Python 2.6 or greater.')
+# Ensure Python >= 2.7
+if sys.version_info < (2, 7):
+ logging.critical('Need Python 2.7 or greater.')
sys.exit(1)
« 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