aboutsummaryrefslogtreecommitdiff
path: root/fprintd_tk_lib.py
diff options
context:
space:
mode:
Diffstat (limited to 'fprintd_tk_lib.py')
-rw-r--r--fprintd_tk_lib.py2
1 files changed, 2 insertions, 0 deletions
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,
bgstack15