mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-21 03:54:50 +00:00
[GTKUI] Fix installing plugin from non-ascii path
This commit is contained in:
parent
803a33efde
commit
d932c3ab99
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue