Commit aed52db7 by Guba Sándor

dashboard: change float to int

parent 9958e0cb
...@@ -816,7 +816,7 @@ class VmDiskResizeForm(forms.Form): ...@@ -816,7 +816,7 @@ class VmDiskResizeForm(forms.Form):
if not size_in_bytes.isdigit() and len(size_in_bytes) > 0: if not size_in_bytes.isdigit() and len(size_in_bytes) > 0:
raise forms.ValidationError(_("Invalid format, you can use " raise forms.ValidationError(_("Invalid format, you can use "
" GB or MB!")) " GB or MB!"))
if float(size_in_bytes) < float(disk.size): if int(size_in_bytes) < int(disk.size):
raise forms.ValidationError(_("Disk size must be greater than the " raise forms.ValidationError(_("Disk size must be greater than the "
"actual size.")) "actual size."))
return cleaned_data return cleaned_data
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment