Browse Source

Tuple, not string.

tags/v0.1^2
Ben Kurtovic 12 years ago
parent
commit
641eb5bd8c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      earwigbot/tasks/drn_clerkbot.py

+ 1
- 1
earwigbot/tasks/drn_clerkbot.py View 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"


Loading…
Cancel
Save