Browse Source

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

tags/v0.1^2
Ben Kurtovic 12 years ago
parent
commit
83fe4b7c03
1 changed files with 5 additions and 4 deletions
  1. +5
    -4
      bot/tasks/afc_statistics.py

+ 5
- 4
bot/tasks/afc_statistics.py View 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."""


Loading…
Cancel
Save