Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.30 KB | None | 0 0
  1. # Original
  2. ...
  3.     success_url = reverse_lazy(
  4.                       'accounts:status',
  5.                       kwargs={'status': 'restore/confirm'}
  6.                   )
  7. ...
  8.  
  9. # Format
  10.  
  11.     success_url = reverse_lazy(
  12.         'accounts:status',
  13.         kwargs={'status': 'restore/confirm'}
  14.     )
  15.  
  16. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement