We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 812abec commit 6e278eaCopy full SHA for 6e278ea
majavahbot/tasks/task_4_archiver.py
@@ -17,7 +17,7 @@
17
from page
18
where
19
page_namespace in ({namespaces})
20
- and page_title not like '%/%'
+ and page_title not like '%%/%%'
21
and page_len > 5000
22
and page_is_redirect = 0
23
and not exists (
@@ -71,7 +71,7 @@ def run(self):
71
return
72
73
namespaces = self.get_task_configuration("autosetup_namespaces")
74
- namespace_placeholders = ",".join(["%s"] * len(namespaces))
+ namespace_placeholders = ", ".join(["%s"] * len(namespaces))
75
76
results = replicadb.get_all(
77
QUERY.format(namespaces=namespace_placeholders), tuple(namespaces)
0 commit comments