Skip to content

Commit

Permalink
Allow image name up to 255 characters
Browse files Browse the repository at this point in the history
 * fix bug 960443

Change-Id: I8e0e7f3e15180054888ea4d158f3ba5349a09c86
  • Loading branch information
andycjw committed Mar 22, 2012
1 parent 479ebdc commit 63ca823
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -39,7 +39,7 @@

class UpdateImageForm(forms.SelfHandlingForm):
image_id = forms.CharField(widget=forms.HiddenInput())
name = forms.CharField(max_length="25", label=_("Name"))
name = forms.CharField(max_length="255", label=_("Name"))
kernel = forms.CharField(max_length="36", label=_("Kernel ID"),
widget=forms.TextInput(
attrs={'readonly': 'readonly'}
Expand Down

0 comments on commit 63ca823

Please sign in to comment.