Merge "Increase maxlength of Snapshot Name to 255."

This commit is contained in:
Jenkins 2013-03-12 21:56:24 +00:00 committed by Gerrit Code Review
commit 7fdb6a42a1

View File

@ -37,7 +37,7 @@ class CreateSnapshot(forms.SelfHandlingForm):
instance_id = forms.CharField(label=_("Instance ID"),
widget=forms.HiddenInput(),
required=False)
name = forms.CharField(max_length="20", label=_("Snapshot Name"))
name = forms.CharField(max_length="255", label=_("Snapshot Name"))
def handle(self, request, data):
try: