Skip to content

Commit

Permalink
tries fixing family file
Browse files Browse the repository at this point in the history
  • Loading branch information
WolfgangFahl committed Sep 27, 2024
1 parent 6bb0467 commit a8cec1e
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions wikibot3rd/wikibot.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,15 +115,18 @@ class Family(family.Family):
}
def scriptpath(self, code):
return '%s'
def isPublic(self):
return %s
return %s
def version(self, code):
return "%s" # The MediaWiki version used. Very important in most cases. (contrary to documentation)
return "%s" # The MediaWiki version used. Very important in most cases. (contrary to documentation)
def protocol(self, code):
return '%s'
def ignore_certificate_error(self, code):
return True
"""
mw_version = self.wikiUser.version.lower().replace("mediawiki ", "")
ispublic = "False" if self.wikiUser.user is not None else "True"
Expand Down

0 comments on commit a8cec1e

Please sign in to comment.