Pylint corrections and documentation.
svn: r10513
This commit is contained in:
parent
f30d524f4d
commit
7bbd735421
@ -34,7 +34,7 @@ _LOG = logging.getLogger(".GrampsAboutDialog")
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
from xml.sax import make_parser, handler, SAXParseException
|
from xml.sax import make_parser, handler, SAXParseException
|
||||||
except:
|
except ImportError:
|
||||||
from _xmlplus.sax import make_parser, handler, SAXParseException
|
from _xmlplus.sax import make_parser, handler, SAXParseException
|
||||||
|
|
||||||
|
|
||||||
@ -87,7 +87,7 @@ class GrampsAboutDialog(gtk.AboutDialog):
|
|||||||
ifile = open(const.LICENSE_FILE, "r")
|
ifile = open(const.LICENSE_FILE, "r")
|
||||||
self.set_license(ifile.read().replace('\x0c', ''))
|
self.set_license(ifile.read().replace('\x0c', ''))
|
||||||
ifile.close()
|
ifile.close()
|
||||||
except:
|
except IOError:
|
||||||
self.set_license("License file is missing")
|
self.set_license("License file is missing")
|
||||||
|
|
||||||
self.set_comments(_(const.COMMENTS))
|
self.set_comments(_(const.COMMENTS))
|
||||||
@ -125,16 +125,14 @@ class AuthorParser(handler.ContentHandler):
|
|||||||
self.text = ""
|
self.text = ""
|
||||||
|
|
||||||
def startElement(self, tag, attrs):
|
def startElement(self, tag, attrs):
|
||||||
"""
|
"""Override default method, handle the start of an element."""
|
||||||
"""
|
|
||||||
if tag == "author":
|
if tag == "author":
|
||||||
self.uid = attrs['uid']
|
self.uid = attrs['uid']
|
||||||
self.title = attrs['title']
|
self.title = attrs['title']
|
||||||
self.text = ""
|
self.text = ""
|
||||||
|
|
||||||
def endElement(self, tag):
|
def endElement(self, tag):
|
||||||
"""
|
"""Override default method, handle the end of an element."""
|
||||||
"""
|
|
||||||
if tag == "author":
|
if tag == "author":
|
||||||
if (self.title == 'author' and
|
if (self.title == 'author' and
|
||||||
self.text not in self.author_list):
|
self.text not in self.author_list):
|
||||||
@ -144,8 +142,7 @@ class AuthorParser(handler.ContentHandler):
|
|||||||
self.contributor_list.append(self.text.strip())
|
self.contributor_list.append(self.text.strip())
|
||||||
|
|
||||||
def characters(self, chunk):
|
def characters(self, chunk):
|
||||||
"""
|
"""Override default method, receive notification of character data."""
|
||||||
"""
|
|
||||||
if chunk != '\n':
|
if chunk != '\n':
|
||||||
self.text += chunk
|
self.text += chunk
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user