Skip to content
This repository has been archived by the owner on Jun 18, 2020. It is now read-only.

Commit

Permalink
Unicodify model
Browse files Browse the repository at this point in the history
  • Loading branch information
moschlar committed Apr 15, 2012
1 parent 5e40149 commit dc597b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sauce/model/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ class Test(DeclarativeBase):
visible = Column(Boolean, nullable=False, default=False)
'''Whether test is shown to user or not'''

input_type = Column(Enum('stdin', 'file'), nullable=False, default='stdin')
input_type = Column(Enum(u'stdin', u'file'), nullable=False, default=u'stdin')
'''Input data type'''
output_type = Column(Enum('stdout', 'file'), nullable=False, default='stdout')
output_type = Column(Enum(u'stdout', u'file'), nullable=False, default=u'stdout')
'''Output data type'''

input_filename = Column(Unicode(255))
Expand Down

0 comments on commit dc597b9

Please sign in to comment.