1
# Copyright 2011 Canonical Ltd. This software is licensed under the
2
# GNU Affero General Public License version 3 (see the file LICENSE).
4
"""Interfaces related to bugs."""
13
from zope.interface import Interface
14
from zope.schema import Int
16
from canonical.launchpad import _
19
class IHasBug(Interface):
20
"""An object linked to a bug, e.g., a bugtask or a bug branch."""
22
bug = Int(title=_("Bug #"))