From 9ab441b6cfddb9ed459b3fc69c8ef0cf74e615fd Mon Sep 17 00:00:00 2001 From: "B. Stack" Date: Tue, 24 Sep 2024 14:10:12 -0400 Subject: add advanced pane which lets you control other users --- fprintd_tk_lib.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'fprintd_tk_lib.py') diff --git a/fprintd_tk_lib.py b/fprintd_tk_lib.py index 6ecbed6..bc97448 100644 --- a/fprintd_tk_lib.py +++ b/fprintd_tk_lib.py @@ -21,6 +21,7 @@ def get_enrolled_fingers(user = None, verbose = False): enrolled_fingers = [] if user is None: user = _user + print(f"DEBUG (get_enrolled_fingers): user {user}") proc = subprocess.Popen( ["fprintd-list",user], stdout = subprocess.PIPE, @@ -51,6 +52,7 @@ def fprintd_action(action, finger, status_function = None, user = None, verbose if status_function: status_function(f"Invalid action {action}") return False + print(f"DEBUG (fprintd_action): command {command}") proc = subprocess.Popen( command, stdout = subprocess.PIPE, -- cgit