Skip to content

Commit

Permalink
qubes module: Typo fix
Browse files Browse the repository at this point in the history
This commit fixes a typo, where the exception type DontSave was used,
even though the name of the function dontsave was intended.

(cherry picked from commit d81d6a9)
  • Loading branch information
m-v-b authored and marmarek committed Apr 18, 2020
1 parent 7c5e292 commit 3f2e2a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qubes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__)

Expand Down

0 comments on commit 3f2e2a6

Please sign in to comment.