From f0b2291dc9daa58b93cf0989ffcd360b28855430 Mon Sep 17 00:00:00 2001 From: Stan James Date: Tue, 30 Jan 2018 16:44:44 -0700 Subject: [PATCH] Fixed print() to python 3 standard --- model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model.py b/model.py index 6436c81..c1f01a8 100644 --- a/model.py +++ b/model.py @@ -39,4 +39,4 @@ from sqlalchemy.orm import sessionmaker session = sessionmaker() session.configure(bind=engine) Base.metadata.create_all(engine) -print "Created database model" +print ("Created database model")