Explorar el Código

drn_clerkbot: Fix if username starts with 'User:'

pull/15/head
Ben Kurtovic hace 11 años
padre
commit
299c392344
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. +2
    -0
      tasks/drn_clerkbot.py

+ 2
- 0
tasks/drn_clerkbot.py Ver fichero

@@ -497,6 +497,8 @@ class DRNClerkBot(Task):
user = re.search("[:*#]{,5} \{\{User\|(.*?)\}\}", line)
if user:
party = user.group(1).replace("_", " ").strip()
if party.startswith("User:"):
party = party[len("User:"):]
if party:
party = party[0].upper() + party[1:]
if party == case.file_user:


Cargando…
Cancelar
Guardar