From 9c6f4ecc3b6e5ddf5e180df149ee0bc1f581f9fc Mon Sep 17 00:00:00 2001 From: NoDRM Date: Mon, 27 Dec 2021 10:45:36 +0100 Subject: [PATCH] Fix broken key management --- DeDRM_plugin/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DeDRM_plugin/config.py b/DeDRM_plugin/config.py index 1c55684..9a7c493 100755 --- a/DeDRM_plugin/config.py +++ b/DeDRM_plugin/config.py @@ -377,7 +377,7 @@ class ManageKeysDialog(QDialog): # New key generation cancelled. return - if d.k_key_list is not None: + if hasattr(d, "k_key_list") and d.k_key_list is not None: # importing multiple keys idx = -1 dup_key_count = 0