Merge pull request #240 from OpenKMIP/bug/fix-cert-identity

Fixes a mismapped polymorphic identity for X509Certificate objects
This commit is contained in:
Peter Hamilton 2017-01-04 12:52:16 -05:00 committed by GitHub
commit d600a47b3c
1 changed files with 1 additions and 1 deletions

View File

@ -820,7 +820,7 @@ class X509Certificate(Certificate):
primary_key=True)
__mapper_args__ = {
'polymorphic_identity': 'Certificate'
'polymorphic_identity': 'X509Certificate'
}
__table_args__ = {
'sqlite_autoincrement': True