**Steps to reproduce**
# `python pwb.py category move` on category with a talkpage (without page deletion rights)
**Expected behavior**
Both category page and talkpage are proposed to be deleted by {{delete}} template
**Current behavior**
Category talkpage deletion request by bot is declined by AbuseFilter ([[https://cs.wikipedia.org/wiki/Speci%C3%A1ln%C3%AD:Z%C3%A1znam_filtr%C5%AF_zneu%C5%BEit%C3%AD/492408|1]]), because it adds a category to the talk page:
```
{{delete|1=Robot: nahrazení kategorie Příkazy DOS za [[Kategorie:Příkazy DOSu|Příkazy DOSu]]}}
```
```
Translated to english: {{delete|1=Bot: category Old moved to [[Category:New|New]]}}
```
**Cause**
There is colon character (`:`) missing in the parameter. In category.py the content of the first parameter is taken from automatic summary. The summary contains link to New generated by `newcat.title(asLink=True)` ([[https://phabricator.wikimedia.org/diffusion/PWBC/browse/master/scripts/category.py;6e027ce33caaa8128151bbce3509e51d7307f782$488|2]]). The `asLink` part adds only a semicolon, when on category or file page ([[https://phabricator.wikimedia.org/diffusion/PWBC/browse/master/pywikibot/page.py;6e027ce33caaa8128151bbce3509e51d7307f782$357|3]]). Not on category talk page.
**Configuration**
python 3.6.2