Fix JSON error caused by bad path

mwclient now assumes a path prefix of `/w/` which causes an error. This fixes that path in the example and asserts a path of `/` in the code
Fixes #133
This commit is contained in:
Gene Wood 2021-11-03 11:37:55 -07:00
Родитель 5bd674675a
Коммит a9b4c45f63
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: F0A9E7DCD39E452E
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -1,7 +1,7 @@
{
"username": "",
"password": "",
"site": "wiki.mozilla.org/api.php",
"site": "wiki.mozilla.org",
"useragent": "Infosec wiki updater, based on mwclient",
"repos": "https://github.com/mozilla/wikimo_content",
"basedir" : ".",

Просмотреть файл

@ -26,7 +26,7 @@ import getopt
import subprocess
def connect(config):
site = mwclient.Site((config['site']), clients_useragent=config['useragent'])
site = mwclient.Site((config['site']), path='/', clients_useragent=config['useragent'])
site.login(config['username'], config['password'])
return site