diff --git a/server/routes.py b/server/routes.py index 7f61645..616ea34 100644 --- a/server/routes.py +++ b/server/routes.py @@ -13,7 +13,7 @@ def index(): if name: cursor.execute( - "SELECT * FROM books WHERE name LIKE '%" + name + "%'" + "SELECT * FROM books WHERE name LIKE '%" + name + "%' " ) books = [Book(*row) for row in cursor]