Ticket #3331: client.py.diff

File client.py.diff, 393 bytes (added by Morgan Collett <morgan.collett@…>, 17 years ago)

Patch for django/test/client.py

  • client.py

     
    204204        form_data = {
    205205            'username': username,
    206206            'password': password,
    207             'next' : next,
     207            'next' : path,
    208208        }
    209209        response = self.post(login_path, data=form_data, **extra)
    210210
Back to Top