summaryrefslogtreecommitdiff
path: root/scripts/fill.image_urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/fill.image_urls.py')
-rwxr-xr-xscripts/fill.image_urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/fill.image_urls.py b/scripts/fill.image_urls.py
index d3a10de..a7c518b 100755
--- a/scripts/fill.image_urls.py
+++ b/scripts/fill.image_urls.py
@@ -29,7 +29,7 @@ def add_url(url):
ps2 = db.prepare("INSERT INTO image_urls(url) VALUES($1)")
ps2(url)
-# NOTE. hardcoded room numbers to index here... only indexing DUMPFM (1) and GIF (8) currently.
+# NOTE: hardcoded room numbers to index here... only indexing HUMPFM (1) and GIF (8) currently.
def get_messages(lower, upper):
ps = db.prepare("SELECT content FROM messages WHERE message_id >= $1 AND message_id <= $2 AND room_id IN (1,8) ORDER BY message_id ASC")
rows = ps(lower, upper)