Skip to content

Commit

Permalink
Fix stupid bad call
Browse files Browse the repository at this point in the history
  • Loading branch information
fle committed Apr 8, 2014
1 parent 3fff69d commit 164e56a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion multi_email_field/widgets.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ def prep_value(self, value):
raise ValidationError('Invalid format.')

def render(self, name, value, attrs=None):
value = self.prep_value()
value = self.prep_value(value)
return super(MultiEmailWidget, self).render(name, value, attrs)

0 comments on commit 164e56a

Please sign in to comment.