twoscoops / two-scoops-of-django-1.6

Tracking thoughts and feature requests for Two Scoops of Django 1.6
51 stars 7 forks source link

Page 96, Example 8.6, unneeded wraps(view_func) in return #76

Closed sdementen closed 9 years ago

sdementen commented 10 years ago

As the function new_view_func is already decorated with @wraps(view_func), the return value of check_sprinkles could be simplied to return new_view_func instead of return wraps(view_func)(new_view_func)

pydanny commented 9 years ago

d'oh!

:ship: