~gary/launchpad/bug548-db

« back to all changes in this revision

Viewing changes to lib/lp/registry/model/nameblacklist.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-01-28 01:56:42 UTC
  • mfrom: (10156.1.1 db-devel)
  • Revision ID: launchpad@pqm.canonical.com-20110128015642-b6pgdmrz09wmeb5s
[rs=wgrant][no-qa] Merge stable and resolve conflicts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
    ]
11
11
 
12
12
 
13
 
from storm.base import Storm
14
13
from storm.locals import (
15
14
    Int,
16
15
    Reference,
24
23
    INameBlacklistSet,
25
24
    )
26
25
from lp.registry.model.person import Person
27
 
 
28
 
 
29
 
class NameBlacklist(Storm):
 
26
from lp.services.database.stormbase import StormBase
 
27
 
 
28
 
 
29
class NameBlacklist(StormBase):
30
30
    """Class for the NameBlacklist table."""
31
31
 
32
32
    implements(INameBlacklist)