Do not allow decimal points in quota sizes
This commit is contained in:
parent
686a074fab
commit
a60e1c274a
|
@ -433,9 +433,9 @@ def validate_quota(quota):
|
||||||
|
|
||||||
if quota == "":
|
if quota == "":
|
||||||
raise ValueError("No quota provided.")
|
raise ValueError("No quota provided.")
|
||||||
if re.search(r"[\s,]", quota):
|
if re.search(r"[\s,.]", quota):
|
||||||
raise ValueError("Quotas cannot contain spaces or commas.")
|
raise ValueError("Quotas cannot contain spaces, commas, or decimal points.")
|
||||||
if not re.match(r'^[\d\.]+[GM]?$', quota):
|
if not re.match(r'^[\d]+[GM]?$', quota):
|
||||||
raise ValueError("Invalid quota.")
|
raise ValueError("Invalid quota.")
|
||||||
|
|
||||||
return quota
|
return quota
|
||||||
|
|
Loading…
Reference in New Issue