From ff309c1cdaac881a30f191afb927eb9f04a090dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Fri, 12 Jun 2020 12:29:17 +0200 Subject: [PATCH] debian: run with python3 (#43753) --- debian/passerelle-manage | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/debian/passerelle-manage b/debian/passerelle-manage index 12c80538..611906fd 100755 --- a/debian/passerelle-manage +++ b/debian/passerelle-manage @@ -18,9 +18,8 @@ fi if test $# -eq 0 then - python ${MANAGE} help + python3 ${MANAGE} help exit 1 fi -python ${MANAGE} "$@" - +python3 ${MANAGE} "$@"