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.
This commit is contained in:
M. Vefa Bicakci 2020-01-05 16:11:00 -05:00
szülő 7980d94807
commit d81d6a9267
Nem található kulcs ehhez az aláíráshoz az adatbázisban
GPG kulcs azonosító: 1DF87CE3B3A5DFAF

Fájl megtekintése

@ -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__)