Tweaked exception wording.

This commit is contained in:
Michael Lazar
2015-12-08 01:09:56 -08:00
parent 9d2a6af826
commit cefdfb3290
6 changed files with 7 additions and 6 deletions

View File

@@ -184,7 +184,7 @@ class Page(object):
prompt = 'Are you sure you want to delete this? (y/n): '
if not self.term.prompt_y_or_n(prompt):
self.term.show_notification('Aborted')
self.term.show_notification('Canceled')
return
with self.term.loader('Deleting', delay=0):
@@ -220,7 +220,7 @@ class Page(object):
text = self.term.open_editor(info)
if text == content:
self.term.show_notification('Aborted')
self.term.show_notification('Canceled')
return
with self.term.loader('Editing', delay=0):