Unverified Commit 26777ccf authored by davelopez's avatar davelopez
Browse files

Expect correct error when parsing quota amount

parent f9efd469
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -97,7 +97,7 @@ class QuotaManager:
            return None
        try:
            return util.size_to_bytes(amount)
        except AssertionError:
        except ValueError:
            return False

    def rename_quota(self, quota, params) -> str: