@ -158,6 +158,11 @@ def user_action(hunk: Sequence[Command], context=None) -> Sequence[Command]:
return hunk
elif answer.startswith(('n', 'N')):
return []
else:
# Bad choice or error. Notify user and try again
print("Bad choice, or maybe bug.")
# No goto, use recursion
return user_action(hunk, context)