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

Unified Diff: Tools/Scripts/webkitpy/common/version_check.py

Issue 478553002: Remove thirdparty/unittest2 from webkitpy and require python2.7. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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
Index: Tools/Scripts/webkitpy/common/version_check.py
diff --git a/Tools/Scripts/webkitpy/common/version_check.py b/Tools/Scripts/webkitpy/common/version_check.py
index c0505443f35184f292a3375f0eda131bf174bb3d..830cb8b636fd8ca5c45e08d3e1c9d749dc551cc0 100644
--- a/Tools/Scripts/webkitpy/common/version_check.py
+++ b/Tools/Scripts/webkitpy/common/version_check.py
@@ -28,6 +28,6 @@
import sys
-if sys.version < '2.6' or sys.version >= '2.8':
- print >> sys.stderr, "Unsupported Python version: WebKit only supports 2.6.x - 2.7.x, and you're running %s." % sys.version.split()[0]
+if sys.version < '2.7' or sys.version >= '2.8':
+ print >> sys.stderr, "Unsupported Python version: webkitpy requires 2.7.x, and you're running %s." % sys.version.split()[0]
sys.exit(1)
« no previous file with comments | « Tools/Scripts/webkitpy/common/thread/threadedmessagequeue_unittest.py ('k') | Tools/Scripts/webkitpy/common/webkitunittest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698