From 0b6655e752efcafa9124eab25d7dbf67adc82beb Mon Sep 17 00:00:00 2001 From: Giuseppe Varriale Date: Thu, 14 Feb 2019 19:27:08 -0200 Subject: [PATCH] Fix: line 380, wrong print syntax Fix the print Syntax : Missing parentheses in call to 'print' --- Lesson_1/lotsofmenus.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lesson_1/lotsofmenus.py b/Lesson_1/lotsofmenus.py index b86d401..e4c78f0 100644 --- a/Lesson_1/lotsofmenus.py +++ b/Lesson_1/lotsofmenus.py @@ -377,4 +377,4 @@ session.commit() -print "added menu items!" +print("added menu items!")