From 1bdc99ded738597dcee15b03e5a079c3ed8ae683 Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Fri, 27 Nov 2015 13:41:06 +0000 Subject: [PATCH] [GTKUI] Fix installing plugin from non-ascii path --- deluge/ui/gtkui/preferences.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/ui/gtkui/preferences.py b/deluge/ui/gtkui/preferences.py index 1de86ef7e..b269617a7 100644 --- a/deluge/ui/gtkui/preferences.py +++ b/deluge/ui/gtkui/preferences.py @@ -941,7 +941,7 @@ class Preferences(component.Component): response = chooser.run() if response == gtk.RESPONSE_OK: - filepath = chooser.get_filename() + filepath = deluge.common.decode_string(chooser.get_filename()) else: chooser.destroy() return