~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/answers/errors.py

  • Committer: Curtis Hovey
  • Date: 2011-05-21 19:59:18 UTC
  • mto: This revision was merged to the branch mainline in revision 13102.
  • Revision ID: curtis.hovey@canonical.com-20110521195918-lpuusz2016sg49t2
Fixed grammar.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
 
29
29
class FAQTargetError(ValueError):
30
 
    """The target must be `IFAQTarget`."""
 
30
    """The target must be an `IFAQTarget`."""
31
31
    webservice_error(httplib.BAD_REQUEST)
32
32
 
33
33
 
56
56
 
57
57
 
58
58
class QuestionTargetError(ValueError):
59
 
    """The target must be a an `IQueastionTarget`."""
 
59
    """The target must be an `IQueastionTarget`."""
60
60
    webservice_error(httplib.BAD_REQUEST)