~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/answers/interfaces/questiontarget.py

  • Committer: Francis J. Lacoste
  • Date: 2009-03-17 21:23:43 UTC
  • mto: This revision was merged to the branch mainline in revision 8007.
  • Revision ID: francis.lacoste@canonical.com-20090317212343-tj5w81k3jypg6e9j
Rename lp.apps.answers to lp.answers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
from canonical.launchpad import _
20
20
from canonical.launchpad.fields import PublicPersonChoice
21
21
 
22
 
from lp.apps.answers.interfaces.questioncollection import (
 
22
from lp.answers.interfaces.questioncollection import (
23
23
    ISearchableByQuestionOwner, QUESTION_STATUS_DEFAULT_SEARCH)
24
 
from lp.apps.answers.interfaces.questionenums import (
 
24
from lp.answers.interfaces.questionenums import (
25
25
    QuestionSort, QuestionStatus)
26
26
 
27
27