Skip to content

Commit

Permalink
Changed default value for clear command Solves #45
Browse files Browse the repository at this point in the history
  • Loading branch information
fernanqv committed Aug 31, 2022
1 parent 9f2c321 commit ff72e7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drm4g/commands/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
"""
Expand Down

0 comments on commit ff72e7c

Please sign in to comment.