Added a terminal bell if interaction from the user is required

This commit is contained in:
SpirosChadoulos 2017-03-26 13:40:40 +03:00
parent 920784a42d
commit 2fbc7f0e70

View file

@ -823,6 +823,8 @@ class TerminalImportSession(importer.ImportSession):
Returns a list of `PromptChoice`s.
"""
# Standard, built-in choices.
#Bell ring to alert the user that he has to interfere with the cmd
print('\a')
choices = [
PromptChoice(u's', u'Skip',
lambda s, t: importer.action.SKIP),