Updated question

This commit is contained in:
Dimitris Zlatanidis 2022-12-20 22:10:51 +02:00
parent fcf9b92639
commit a22e7d1d08

View file

@ -184,7 +184,7 @@ class ViewMessage:
def question(self):
""" Manage to proceed. """
if '--yes' not in self.flags:
answer = input('\nDo you want to continue [y/N]: ')
answer = input('\nDo you want to continue (y/N)?: ')
if answer not in ['Y', 'y']:
raise SystemExit()
print()