mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-04 15:38:43 +00:00
[GTKUI] Fix installing plugin from non-ascii path
This commit is contained in:
parent
dd34492e16
commit
1bdc99ded7
1 changed files with 1 additions and 1 deletions
|
@ -941,7 +941,7 @@ class Preferences(component.Component):
|
||||||
response = chooser.run()
|
response = chooser.run()
|
||||||
|
|
||||||
if response == gtk.RESPONSE_OK:
|
if response == gtk.RESPONSE_OK:
|
||||||
filepath = chooser.get_filename()
|
filepath = deluge.common.decode_string(chooser.get_filename())
|
||||||
else:
|
else:
|
||||||
chooser.destroy()
|
chooser.destroy()
|
||||||
return
|
return
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue