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

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Kamm <mail@ckamm.de>2018-08-15 12:06:51 +0300
committerckamm <mail@ckamm.de>2018-08-16 10:07:00 +0300
commit2811aebf1aeaa3035511e815a66216aa3149b2d1 (patch)
tree542a2d08556980edba3604eb6b61becef695922e /shell_integration
parent3450b2b85e2442afbdd0a79478db80f553471b58 (diff)
nautilus: Fix GET_MENU_ITEMS with utf8 filenames #6643
Diffstat (limited to 'shell_integration')
-rw-r--r--shell_integration/nautilus/syncstate.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell_integration/nautilus/syncstate.py b/shell_integration/nautilus/syncstate.py
index 4453a82b9..d32cb5e71 100644
--- a/shell_integration/nautilus/syncstate.py
+++ b/shell_integration/nautilus/syncstate.py
@@ -233,7 +233,7 @@ class MenuExtension_ownCloud(GObject.GObject, Nautilus.MenuProvider):
def ask_for_menu_items(self, files):
record_separator = '\x1e'
filesstring = record_separator.join(files)
- socketConnect.sendCommand('GET_MENU_ITEMS:{}\n'.format(filesstring))
+ socketConnect.sendCommand(u'GET_MENU_ITEMS:{}\n'.format(filesstring))
done = False
start = time.time()