diff --git a/api_openid/src/api_openid/parser.py b/api_openid/src/api_openid/parser.py index 5562ba4c5..ed7d7f96b 100644 --- a/api_openid/src/api_openid/parser.py +++ b/api_openid/src/api_openid/parser.py @@ -41,12 +41,12 @@ class YadisHTMLParser(colony.legacy.HTMLParser.HTMLParser): """ - The yadis HTML parser, used to retrieve the yadis + The Yadis HTML parser, used to retrieve the Yadis provider URL from the HTML code. """ yadis_provider_url = None - """ The yadis provider URL """ + """ The Yadis provider URL """ def handle_starttag(self, tag, attributes): """ @@ -66,5 +66,5 @@ def handle_starttag(self, tag, attributes): # checks if the HTTP equiv reference exists # and is valid if attributes_map.get("http-equiv", None).lower() == "x-xrds-location": - # sets the yadis provider URL + # sets the Yadis provider URL self.yadis_provider_url = attributes_map.get("content", None)