Commit a257e143 authored by Neil Fraser's avatar Neil Fraser

Add warning to build if not using Python 2.

parent 7414c59b
...@@ -35,7 +35,12 @@ ...@@ -35,7 +35,12 @@
# dart_compressed.js: The compressed Dart generator. # dart_compressed.js: The compressed Dart generator.
# msg/js/<LANG>.js for every language <LANG> defined in msg/js/<LANG>.json. # msg/js/<LANG>.js for every language <LANG> defined in msg/js/<LANG>.json.
import errno, glob, httplib, json, os, re, subprocess, sys, threading, urllib import sys
if sys.version_info[0] != 2:
raise Exception("Blockly build only compatible with Python 2.x.\n"
"You are using: " + sys.version)
import errno, glob, httplib, json, os, re, subprocess, threading, urllib
def import_path(fullpath): def import_path(fullpath):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment