Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlovetox <philipp@hoerist.com>2020-06-28 21:58:41 +0300
committerlovetox <philipp@hoerist.com>2020-06-28 21:58:41 +0300
commitb357ff264610cf8cbd96a49487676c9c11d252e9 (patch)
tree7ac8fb219b4e2919b2b59413071975a8b34ed01b /appindicator_integration
parentedd92e41a557db4d42b4f65cfbdff7ef2a16bf2c (diff)
[appindicator] Make sure path is a string
In the future the configpaths module will return Path like objects
Diffstat (limited to 'appindicator_integration')
-rw-r--r--appindicator_integration/plugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/appindicator_integration/plugin.py b/appindicator_integration/plugin.py
index 4f01bdd..936b841 100644
--- a/appindicator_integration/plugin.py
+++ b/appindicator_integration/plugin.py
@@ -86,7 +86,7 @@ class AppindicatorIntegrationPlugin(GajimPlugin):
self.indicator = appindicator.Indicator.new(
'Gajim', self.offline_icon,
appindicator.IndicatorCategory.COMMUNICATIONS)
- self.indicator.set_icon_theme_path(configpaths.get('ICONS'))
+ self.indicator.set_icon_theme_path(str(configpaths.get('ICONS')))
self.indicator.set_attention_icon_full('mail-unread', 'New Message')
self.indicator.set_status(appindicator.IndicatorStatus.ACTIVE)
self.indicator.set_menu(self.menu)