From d593ede6d4cab69bb0dca140f8ca8f82eebc8017 Mon Sep 17 00:00:00 2001 From: Muhammad Talal Anwar Date: Fri, 5 Apr 2024 21:07:11 +0200 Subject: [PATCH] Fix variable name --- gui/src/gui/quickaccess.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/src/gui/quickaccess.py b/gui/src/gui/quickaccess.py index 50c5f4d..f6bc976 100644 --- a/gui/src/gui/quickaccess.py +++ b/gui/src/gui/quickaccess.py @@ -155,7 +155,7 @@ class MainWindow(Gtk.ApplicationWindow): if ctrl_pressed and alt_pressed: Gtk.show_uri(None, self.results_list.get_selected_row().uri, Gdk.CURRENT_TIME) elif keyval == 116: - totp_code = totp.totp(self.resuts_list.get_selected_row().totp) + totp_code = totp.totp(self.results_list.get_selected_row().totp) if ctrl_pressed and not alt_pressed: set_clipboard(totp_code) if ctrl_pressed and alt_pressed: