Przeglądaj źródła

Simplify a bit of code in Page

tags/v0.1^2
Ben Kurtovic 11 lat temu
rodzic
commit
c0e309bbd9
1 zmienionych plików z 2 dodań i 9 usunięć
  1. +2
    -9
      earwigbot/wiki/page.py

+ 2
- 9
earwigbot/wiki/page.py Wyświetl plik

@@ -214,15 +214,8 @@ class Page(CopyvioMixIn):

res = result["query"]["pages"].values()[0]

# Normalize our pagename/title thing:
self._title = res["title"]

try:
res["redirect"]
except KeyError:
self._is_redirect = False
else:
self._is_redirect = True
self._title = res["title"] # Normalize our pagename/title
self._is_redirect = "redirect" in res

self._pageid = int(result["query"]["pages"].keys()[0])
if self._pageid < 0:


Ładowanie…
Anuluj
Zapisz