From d81d6a9267a89fbd3949151fa9062f7f80c30411 Mon Sep 17 00:00:00 2001 From: "M. Vefa Bicakci" Date: Sun, 5 Jan 2020 16:11:00 -0500 Subject: [PATCH] qubes module: Typo fix This commit fixes a typo, where the exception type DontSave was used, even though the name of the function dontsave was intended. --- qubes/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qubes/__init__.py b/qubes/__init__.py index c46f3144..65c9d734 100644 --- a/qubes/__init__.py +++ b/qubes/__init__.py @@ -429,7 +429,7 @@ def stateless_property(func): exposed through management API (including qvm-prefs etc)''' return property(func.__name__, setter=property.forbidden, - saver=property.DontSave, + saver=property.dontsave, default=func, doc=func.__doc__)