[GTKUI] Fix installing plugin from non-ascii path

This commit is contained in:
Calum Lind 2015-11-27 13:41:06 +00:00
parent 803a33efde
commit d932c3ab99
1 changed files with 1 additions and 1 deletions

View File

@ -975,7 +975,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