From ff72e7c544795a050027088caa64883200227c8c Mon Sep 17 00:00:00 2001 From: fernanqv Date: Wed, 31 Aug 2022 13:39:30 +0200 Subject: [PATCH] Changed default value for clear command Solves #45 --- drm4g/commands/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drm4g/commands/__init__.py b/drm4g/commands/__init__.py index 9acee48..2ed4cf4 100644 --- a/drm4g/commands/__init__.py +++ b/drm4g/commands/__init__.py @@ -62,7 +62,7 @@ def exec_cmd( cmd , stdin=subprocess.PIPE, stdout=subprocess.PIPE, out , err = cmd_to_exec.communicate() return out.decode() , err.decode() -def yes_no_choice( message , default = 'y' ) : +def yes_no_choice( message , default = 'n' ) : """ Ask for Yes/No questions """