mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +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 urllib
|
||||
import urllib2
|
||||
|
||||
from lib.core.exception import sqlmapUnsupportedFeatureException
|
||||
from lib.core.exception import SqlmapUnsupportedFeatureException
|
||||
from lib.core.settings import PYVERSION
|
||||
|
||||
if PYVERSION >= "2.6":
|
||||
|
|
@ -117,4 +117,4 @@ else:
|
|||
class ProxyHTTPSHandler:
|
||||
def __init__(self, *args, **kwargs):
|
||||
errMsg = "unsupported feature on versions of Python before 2.6"
|
||||
raise sqlmapUnsupportedFeatureException, errMsg
|
||||
raise SqlmapUnsupportedFeatureException, errMsg
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue