Skip to content

Commit

Permalink
Merge pull request #14 from teodorescuserban/fix-model-unicode-warning
Browse files Browse the repository at this point in the history
Fix unicode warning in model
  • Loading branch information
ZoranPandovski committed Sep 8, 2017
2 parents e6b13c4 + 4f5127a commit ad8625e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckanext/requestdata/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def define_request_data_table():
Column('package_id', types.UnicodeText,
nullable=False),
Column('state', types.UnicodeText,
default='new'),
default=u'new'),
Column('data_shared', types.Boolean,
default=False),
Column('rejected', types.Boolean,
Expand Down

0 comments on commit ad8625e

Please sign in to comment.