Skip to content

Commit

Permalink
Fix Typo in AddApprovableEntryView Success Message
Browse files Browse the repository at this point in the history
  • Loading branch information
prikhi committed Dec 9, 2015
1 parent b087d40 commit b608bf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acornaccounting/core/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def _redirect(self, request, submision_type):
def _successful_submission_text(self):
"""Generate message text for a successful initial entry submission."""
message_text = ('Your {} Entry has been successfully submitted for '
'Approval'.format(self.verbose_name))
'Approval.'.format(self.verbose_name))
if not self.entry_form.instance.receipt_set.exists():
message_text += (
" Since you did not attach a receipt, <b>you must print this "
Expand Down

0 comments on commit b608bf4

Please sign in to comment.