Ticket #12606: remove_print_from_auth_admin.diff

File remove_print_from_auth_admin.diff, 577 bytes (added by Sean Brant, 14 years ago)

remove print statment

  • django/contrib/auth/admin.py

     
    116116
    117117        fieldsets = [(None, {'fields': form.base_fields.keys()})]
    118118        adminForm = admin.helpers.AdminForm(form, fieldsets, {})
    119         print adminForm, form
    120119
    121120        return render_to_response(self.change_user_password_template or 'admin/auth/user/change_password.html', {
    122121            'title': _('Change password: %s') % escape(user.username),
Back to Top