Przeglądaj źródła

Limit short title lengths to 50 characters.

tags/v0.1^2
Ben Kurtovic 12 lat temu
rodzic
commit
bafc660846
1 zmienionych plików z 4 dodań i 1 usunięć
  1. +4
    -1
      bot/tasks/afc_statistics.py

+ 4
- 1
bot/tasks/afc_statistics.py Wyświetl plik

@@ -336,7 +336,10 @@ class Task(BaseTask):
return None, 0

def get_short_title(self, title):
return re.sub("Wikipedia(\s*talk)?\:Articles\sfor\screation\/", "", title)
short = re.sub("Wikipedia(\s*talk)?\:Articles\sfor\screation\/", "", title)
if len(short) > 50:
short = "".join((short[:47], "..."))
return short

def get_create(self, pageid):
query1 = "SELECT MIN(rev_id) FROM revision WHERE rev_page = ?"


Ładowanie…
Anuluj
Zapisz