Skip to content

Commit

Permalink
Give plenty of room for input
Browse files Browse the repository at this point in the history
  • Loading branch information
paltman committed Jan 31, 2015
1 parent 9c67406 commit 9685a19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pinax/types/periods/fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class PeriodField(with_metaclass(models.SubfieldBase, models.CharField)):
description = "A valid period from pinax-types"

def __init__(self, *args, **kwargs):
kwargs["max_length"] = 12
kwargs["max_length"] = 50
super(PeriodField, self).__init__(*args, **kwargs)

def deconstruct(self):
Expand Down

0 comments on commit 9685a19

Please sign in to comment.