jenkins-bot has submitted this change and it was merged. ( https://gerrit.wikimedia.org/r/583753 )
Change subject: [doc] Fix doc warnings introduced today ......................................................................
[doc] Fix doc warnings introduced today
Change-Id: Ie0e430ff319dc07de272cd2e1d1af92d53e78e4f --- M pywikibot/page/__init__.py 1 file changed, 2 insertions(+), 2 deletions(-)
Approvals: Xqt: Looks good to me, approved jenkins-bot: Verified
diff --git a/pywikibot/page/__init__.py b/pywikibot/page/__init__.py index 928a2c1..4704b67 100644 --- a/pywikibot/page/__init__.py +++ b/pywikibot/page/__init__.py @@ -3897,7 +3897,7 @@
@param key: site key as Site instance or db key @type key: pywikibot.Site or str - @rtype: SiteLink + @rtype: pywikibot.page.SiteLink """ key = self.getdbName(key) return self._data[key] @@ -3910,7 +3910,7 @@ @type key: pywikibot.Site or str @param val: page name as a string or JSON containing SiteLink data @type val: dict or str - @rtype: SiteLink + @rtype: pywikibot.page.SiteLink """ if isinstance(val, UnicodeType): val = SiteLink(val, key)
pywikibot-commits@lists.wikimedia.org