summaryrefslogtreecommitdiff
path: root/crystal.py
diff options
context:
space:
mode:
Diffstat (limited to 'crystal.py')
-rw-r--r--crystal.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/crystal.py b/crystal.py
index d303c9d..95b326d 100644
--- a/crystal.py
+++ b/crystal.py
@@ -16,6 +16,11 @@ try:
except ImportError:
import unittest
+# Check for things we need in unittest.
+if not hasattr(unittest.TestCase, 'setUpClass'):
+ print "The unittest2 module or Python 2.7 is required to run this script."
+ sys.exit(1)
+
if not hasattr(json, "dumps"):
json.dumps = json.write