mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-07-11 19:13:12 +00:00
Doing some more style updating (capitalization of exception classes; using _ is enough for private members - __ is used in Python specific methods)
This commit is contained in:
parent
003d21e962
commit
974407396e
102 changed files with 1115 additions and 1091 deletions
|
|
@ -10,7 +10,7 @@ import socket
|
|||
import urllib2
|
||||
|
||||
from lib.core.data import logger
|
||||
from lib.core.exception import sqlmapConnectionException
|
||||
from lib.core.exception import SqlmapConnectionException
|
||||
|
||||
ssl = None
|
||||
try:
|
||||
|
|
@ -57,7 +57,7 @@ class HTTPSConnection(httplib.HTTPSConnection):
|
|||
logger.debug("SSL connection error occured ('%s')" % errMsg)
|
||||
|
||||
if not success:
|
||||
raise sqlmapConnectionException, "can't establish SSL connection"
|
||||
raise SqlmapConnectionException, "can't establish SSL connection"
|
||||
|
||||
class HTTPSHandler(urllib2.HTTPSHandler):
|
||||
def https_open(self, req):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue