Skip to content

Commit

Permalink
Fix TypeError during reset of provides_network
Browse files Browse the repository at this point in the history
(cherry picked from commit 704f586)
  • Loading branch information
lkubb authored and marmarek committed Jan 20, 2024
1 parent 47f0314 commit e3a3de3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qubes/ext/core_features.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def on_property_set(self, subject, event, name, newvalue, oldvalue=None):
self.set_servicevm_feature(subject)

@qubes.ext.handler('property-reset:provides_network')
def on_property_reset(self, subject, event, name):
def on_property_reset(self, subject, event, name, oldvalue=None):
# pylint: disable=unused-argument
self.set_servicevm_feature(subject)

Expand Down

0 comments on commit e3a3de3

Please sign in to comment.