Convert British spelling to American

This commit is contained in:
Eisuke Kawashima
2020-03-18 22:01:19 +09:00
parent 5109b7f1b1
commit ca1e1e2dff
40 changed files with 97 additions and 97 deletions

View File

@ -63,7 +63,7 @@ class xml_node(object):
"""
def __init__(self, attribs=None, name="", fields=None):
"""Initialises xml_node.
"""Initializes xml_node.
Args:
attribs: An optional dictionary giving attribute data. Defaults to {}.
@ -101,7 +101,7 @@ class xml_handler(ContentHandler):
"""
def __init__(self):
"""Initialises xml_handler."""
"""Initializes xml_handler."""
#root xml node with all the data
self.root = xml_node(name="root", fields=[])