aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcpettet <rush@wikimedia.org>2014-11-22 17:36:11 -0600
committercpettet <rush@wikimedia.org>2014-11-22 17:36:11 -0600
commit75995d3ef4e7fb2cc3d1650879d817dd4f4ea68a (patch)
treef5c8dc2369b119ee665e0e9600e547b0ff207338
parent5775f5cb06bcbc65b04ef96c4876f3183e7d2dd2 (diff)
quoting typos
-rwxr-xr-xwmfphablib/phabdb.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/wmfphablib/phabdb.py b/wmfphablib/phabdb.py
index f621bcf..0660891 100755
--- a/wmfphablib/phabdb.py
+++ b/wmfphablib/phabdb.py
@@ -23,7 +23,7 @@ def get_user_relations_last_finish(dbcon):
fin = dbcon.sql_x("SELECT max(finish_epoch) \
from user_relations_jobs \
where \
- source=bugzilla_update_user_header",
+ source='bugzilla_update_user_header'",
())
try:
return int(fin[0][0])
@@ -37,7 +37,7 @@ def get_user_relations_comments_last_finish(dbcon):
fin = dbcon.sql_x("SELECT max(finish_epoch) \
from user_relations_jobs \
where \
- source=bugzilla_update_user_comments",
+ source='bugzilla_update_user_comments'",
())
try:
return int(fin[0][0])