fix for python 3 print

This commit is contained in:
Jon Haddad
2014-08-13 14:12:33 -07:00
parent 545275fdb2
commit d6743df00a

View File

@@ -12,7 +12,7 @@ from cqlengine import connection
try:
CASSANDRA_VERSION = int(os.environ["CASSANDRA_VERSION"])
except:
print "CASSANDRA_VERSION must be set as an environment variable. One of (12, 20, 21)"
print("CASSANDRA_VERSION must be set as an environment variable. One of (12, 20, 21)")
raise
if os.environ.get('CASSANDRA_TEST_HOST'):