File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88import copy
99import types
1010
11- from lib .core .exception import SqlmapDataException
12-
1311class AttribDict (dict ):
1412 """
1513 This class defines the sqlmap object, inheriting from Python data
@@ -43,7 +41,7 @@ def __getattr__(self, item):
4341 try :
4442 return self .__getitem__ (item )
4543 except KeyError :
46- raise SqlmapDataException ("unable to access item '%s'" % item )
44+ raise AttributeError ("unable to access item '%s'" % item )
4745
4846 def __setattr__ (self , item , value ):
4947 """
Original file line number Diff line number Diff line change 1919from lib .core .revision import getRevisionNumber
2020
2121# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22- VERSION = "1.0.5.36 "
22+ VERSION = "1.0.5.37 "
2323REVISION = getRevisionNumber ()
2424STABLE = VERSION .count ('.' ) <= 2
2525VERSION_STRING = "sqlmap/%s#%s" % (VERSION , "stable" if STABLE else "dev" )
You can’t perform that action at this time.
0 commit comments