Sfoglia il codice sorgente

Tuple, not string.

tags/v0.1^2
Ben Kurtovic 12 anni fa
parent
commit
641eb5bd8c
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      earwigbot/tasks/drn_clerkbot.py

+ 1
- 1
earwigbot/tasks/drn_clerkbot.py Vedi File

@@ -141,7 +141,7 @@ class DRNClerkBot(Task):
for line in text.splitlines():
user = re.search("\# \{\{User\|(.*?)\}\}", line)
if user:
additions.add((user.group(1)))
additions.add((user.group(1),))

removals = set()
query1 = "SELECT volunteer_username FROM volunteer"


Caricamento…
Annulla
Salva