Minor style update (capitalization of leftover class names)

This commit is contained in:
Miroslav Stampar
2012-12-06 13:46:24 +01:00
parent bb397f3907
commit 003d21e962
3 changed files with 7 additions and 7 deletions

View File

@@ -15,7 +15,7 @@ from lib.core.data import kb
from lib.core.data import paths
from lib.core.threads import getCurrentThreadData
class htmlHandler(ContentHandler):
class HTMLHandler(ContentHandler):
"""
This class defines methods to parse the input HTML page to
fingerprint the back-end database management system
@@ -50,7 +50,7 @@ def htmlParser(page):
xmlfile = paths.ERRORS_XML
checkFile(xmlfile)
handler = htmlHandler(page)
handler = HTMLHandler(page)
parseXmlFile(xmlfile, handler)