fix_signal_name.patch 987 B

1234567891011121314151617181920212223
  1. From 7041982b69fa9fea065098e7b33f306df1dcac91 Mon Sep 17 00:00:00 2001
  2. From: Michael Webster <miketwebster@gmail.com>
  3. Date: Tue, 14 Jan 2020 16:51:20 -0500
  4. Subject: [PATCH] mintlocale.py: Fix signal name typo.
  5. ---
  6. usr/lib/linuxmint/mintlocale/mintlocale.py | 2 +-
  7. 1 file changed, 1 insertion(+), 1 deletion(-)
  8. diff --git a/usr/lib/linuxmint/mintlocale/mintlocale.py b/usr/lib/linuxmint/mintlocale/mintlocale.py
  9. index e7db8e4..d145073 100755
  10. --- a/usr/lib/linuxmint/mintlocale/mintlocale.py
  11. +++ b/usr/lib/linuxmint/mintlocale/mintlocale.py
  12. @@ -430,7 +430,7 @@ def __init__(self):
  13. self.accountService = AccountsService.UserManager.get_default().get_user(current_user)
  14. self.accountService.connect('notify::is-loaded', self.accountservice_ready)
  15. - self.accountService.connect('changed::', self.accountservice_changed)
  16. + self.accountService.connect('changed', self.accountservice_changed)
  17. groups = grp.getgrall()
  18. for group in groups: