fix signal send

pull/106/head^2
黄成维 2016-02-29 16:09:01 +08:00
parent 8c552ccc45
commit e886b55727
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ def django_request_support(func):
def _deco(*args, **kwargs): def _deco(*args, **kwargs):
request_started.send_robust(func) request_started.send_robust(func)
response = func(*args, **kwargs) response = func(*args, **kwargs)
request_finished.send_robust() request_finished.send_robust(func)
return response return response
return _deco return _deco