From bb3e65f7a80770238bda3733bed89c15a9c76852 Mon Sep 17 00:00:00 2001 From: Patrick Schleizer Date: Tue, 3 Aug 2021 03:25:35 -0400 Subject: [PATCH] bullseye --- usr/lib/security-misc/apt-get-wrapper | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/lib/security-misc/apt-get-wrapper b/usr/lib/security-misc/apt-get-wrapper index 9992e05..81a2381 100755 --- a/usr/lib/security-misc/apt-get-wrapper +++ b/usr/lib/security-misc/apt-get-wrapper @@ -25,7 +25,7 @@ apt_get_exit_code="0" ## http://stackoverflow.com/a/26263980/2605155 ## for the python way to create a pty. -python3.7 -c 'import pty, sys; pty.spawn(sys.argv[1:])' \ +python3.9 -c 'import pty, sys; pty.spawn(sys.argv[1:])' \ | apt-get "$@" 2>&1 \ | tee -a "$logfile" \ || { apt_get_exit_code="$?"; true; };