Typo in column define

This commit is contained in:
Ken Roberts 2014-10-21 13:11:25 -07:00
parent a8cebffec0
commit 0fe5b9f8fe
1 changed files with 1 additions and 1 deletions

View File

@ -191,7 +191,7 @@ class ProjectorSource(CommonBase, Base):
"""
code = Column(String(3))
text = Column(String(20))
projector_id = Integer(ForeignKey('projector.id'))
projector_id = (Integer, ForeignKey('projector.id'))
class ProjectorDB(Manager):