mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
More layout adjustments
This commit is contained in:
@@ -11,8 +11,12 @@ import urllib2
|
||||
|
||||
|
||||
class MethodRequest(urllib2.Request):
|
||||
''' Used to create HEAD/PUT/DELETE/... requests with urllib2 '''
|
||||
'''
|
||||
Used to create HEAD/PUT/DELETE/... requests with urllib2
|
||||
'''
|
||||
|
||||
def set_method(self, method):
|
||||
self.method = method.upper()
|
||||
|
||||
def get_method(self):
|
||||
return getattr(self, 'method', urllib2.Request.get_method(self))
|
||||
|
||||
Reference in New Issue
Block a user