We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 021f4a4 commit 94ee632Copy full SHA for 94ee632
cravat/webresult/webresult.py
@@ -268,7 +268,7 @@ async def get_status (request):
268
job_id, dbpath = await get_jobid_dbpath(request)
269
conn = await get_db_conn(dbpath)
270
cursor = await conn.cursor()
271
- q = r'select * from info where colkey not like "\_%" escape "\\"'
+ q = 'select * from info where colkey not like "\\_%" escape "\\"'
272
await cursor.execute(q)
273
content = {}
274
for row in await cursor.fetchall():
0 commit comments