Skip to content
This repository has been archived by the owner on Jun 22, 2024. It is now read-only.

Commit

Permalink
Merge pull request #21 from clifford2/master
Browse files Browse the repository at this point in the history
Fix key in changed_settings & unchanged_settings
  • Loading branch information
jistr committed Jun 22, 2024
2 parents 4194a66 + c51ebee commit 16b2cd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gsetting.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def main():

for setting, value in parsed_settings:
old_value = _get_value(schemadir, user, setting, dbus_addr)
result = {'key': key, 'value': old_value}
result = {'key': '.'.join(setting.args), 'value': old_value}
changed = old_value != value
any_changed = any_changed or changed

Expand Down

0 comments on commit 16b2cd5

Please sign in to comment.