From a82974b3dd5392d03052af29f5c911feedc87886 Mon Sep 17 00:00:00 2001 From: Christopher Broderick Date: Fri, 11 Apr 2025 11:39:42 +0100 Subject: [PATCH] Fix typo --- helpdesk/views/staff.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpdesk/views/staff.py b/helpdesk/views/staff.py index 4f6bd9bd..cc2b1ed4 100644 --- a/helpdesk/views/staff.py +++ b/helpdesk/views/staff.py @@ -1345,7 +1345,7 @@ class UpdateTicketView( ) except PermissionDenied: return redirect_to_login(self.request.path, "helpdesk:login") - # Avoid calling super as it will call the save() mwethod on the form + # Avoid calling super as it will call the save() method on the form save_ticket_update(form, self.ticket, self.request.user) return return_to_ticket(self.request.user, self.ticket)