Skip to content

Commit

Permalink
nautilus: Fix GET_MENU_ITEMS with utf8 filenames #6643
Browse files Browse the repository at this point in the history
  • Loading branch information
ckamm committed Aug 15, 2018
1 parent d038ffa commit 34650a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shell_integration/nautilus/syncstate.py
Expand Up @@ -233,7 +233,7 @@ def get_file_items(self, window, files):
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()
Expand Down

0 comments on commit 34650a6

Please sign in to comment.