expires_at should be in a tuple not turned into one

Change-Id: I273ed2cd984f1e69cc595169a59647c76a8ca202
This commit is contained in:
David Stanek 2014-03-20 19:26:23 +00:00
parent 634243dece
commit 2943e6b1c5
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ class Trust(Model):
"""
required_keys = ('id', 'trustor_user_id', 'trustee_user_id', 'project_id')
optional_keys = tuple('expires_at')
optional_keys = ('expires_at',)
class Domain(Model):