aboutsummaryrefslogtreecommitdiff
path: root/backend/data/eol
diff options
context:
space:
mode:
authorTerry Truong <terry06890@gmail.com>2022-06-07 12:58:03 +1000
committerTerry Truong <terry06890@gmail.com>2022-06-07 12:58:03 +1000
commit1879c7920607feb1df1102a09d2d4f915d9544a5 (patch)
tree16ea939f085b400f9b2252bd2ad0eafe07a425da /backend/data/eol
parent60acfb1dbccb265896b4734cbf701fbb6132f3c5 (diff)
Add more heuristics for eol-otol-association
Diffstat (limited to 'backend/data/eol')
-rwxr-xr-xbackend/data/eol/reviewImgs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/data/eol/reviewImgs.py b/backend/data/eol/reviewImgs.py
index ba313d9..4fea1c4 100755
--- a/backend/data/eol/reviewImgs.py
+++ b/backend/data/eol/reviewImgs.py
@@ -26,7 +26,7 @@ def getExtraInfo(eolId):
" WHERE id = ? and pref_alt = 1"
row = extraInfoDbCur.execute(query, (eolId,)).fetchone()
if row != None:
- return f"Reviewing EOL ID {eolId}, aka \"row[0]\""
+ return f"Reviewing EOL ID {eolId}, aka \"{row[0]}\""
else:
return f"Reviewing EOL ID {eolId}"
IMG_DISPLAY_SZ = 400