Sfoglia il codice sorgente

Fix untrack_page() - I guess you can't parameterize column names.

tags/v0.1^2
Ben Kurtovic 12 anni fa
parent
commit
83fe4b7c03
1 ha cambiato i file con 5 aggiunte e 4 eliminazioni
  1. +5
    -4
      bot/tasks/afc_statistics.py

+ 5
- 4
bot/tasks/afc_statistics.py Vedi File

@@ -232,12 +232,13 @@ class Task(BaseTask):
self.track_page(cursor, page)

def untrack_page(self, cursor, pageid=None, title=None):
query = """DELETE FROM page, row USING page JOIN row
ON page_id = row_id WHERE ? = ?"""
query = "DELETE FROM page, row USING page JOIN row ON page_id = row_id WHERE "
if pageid:
cursor.execute(query, ("page_id", pageid))
query += "page_id = ?"
cursor.execute(query, (pageid,))
elif title:
cursor.execute(query, ("page_title", title))
query += "page_title = ?"
cursor.execute(query, (title,))

def track_page(self, cursor, title):
"""Update hook for when page is not in our database."""


Caricamento…
Annulla
Salva