From 9a0be7eda9be9b967e3c7ef3a51ac6695008b36b Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Wed, 19 Jan 2022 19:52:46 -0800 Subject: [PATCH] space message --- voussoirkit/pathclass.py | 1 + 1 file changed, 1 insertion(+) diff --git a/voussoirkit/pathclass.py b/voussoirkit/pathclass.py index d6d5c39..9d1c574 100644 --- a/voussoirkit/pathclass.py +++ b/voussoirkit/pathclass.py @@ -48,6 +48,7 @@ class NotEnoughSpace(PathclassException): self.free = free self.reserve = reserve self.path = path + self.args = (f'Only {free} available of requested {reserve}.',) class NotFile(PathclassException): pass