Spaces:
Sleeping
Sleeping
fix query, remove AND
Browse files
app.py
CHANGED
@@ -147,7 +147,7 @@ async def get_logs(
|
|
147 |
query += " WHERE"
|
148 |
|
149 |
if model:
|
150 |
-
query += "
|
151 |
params.append(model)
|
152 |
|
153 |
if start:
|
|
|
147 |
query += " WHERE"
|
148 |
|
149 |
if model:
|
150 |
+
query += " model = ?"
|
151 |
params.append(model)
|
152 |
|
153 |
if start:
|