Skip to content

Commit

Permalink
Merge pull request #11 from danielunderwood/fix/missing-self
Browse files Browse the repository at this point in the history
Fix missing self reference
  • Loading branch information
lehinevych committed Apr 7, 2018
2 parents edc1935 + 7952da4 commit f7ea95d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mediawikiapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
from .language import *


__version__ = "1.1.0"
__version__ = "1.1.1"
2 changes: 1 addition & 1 deletion mediawikiapi/mediawikiapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def summary(self, title, sentences=0, chars=0, auto_suggest=True, redirect=True)
'''
# use auto_suggest and redirect to get the correct article
# also, use page's error checking to raise DisambiguationError if necessary
page_info = page(title, auto_suggest=auto_suggest, redirect=redirect)
page_info = self.page(title, auto_suggest=auto_suggest, redirect=redirect)
title = page_info.title
pageid = page_info.pageid
query_params = {
Expand Down

0 comments on commit f7ea95d

Please sign in to comment.