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

@@ -121,7 +121,7 @@ class SubredditPage(Page):
submission_info = docs.SUBMISSION_FILE.format(name=name)
text = self.term.open_editor(submission_info)
if not text or '\n' not in text:
self.term.show_notification('Aborted')
self.term.show_notification('Canceled')
return
title, content = text.split('\n', 1)