mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Patch of bottle.py for Python 2.6
This commit is contained in:
parent
751f423ae0
commit
07208c45ef
3 changed files with 4 additions and 4 deletions
2
thirdparty/bottle/bottle.py
vendored
2
thirdparty/bottle/bottle.py
vendored
|
|
@ -669,7 +669,7 @@ class Bottle(object):
|
|||
catchall = DictProperty('config', 'catchall')
|
||||
|
||||
__hook_names = 'before_request', 'after_request', 'app_reset', 'config'
|
||||
__hook_reversed = {'after_request'}
|
||||
__hook_reversed = set(['after_request'])
|
||||
|
||||
@cached_property
|
||||
def _hooks(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue