We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 343a3fb commit 55e4f9bCopy full SHA for 55e4f9b
caja-dropbox.in
@@ -1384,10 +1384,10 @@ Any specified path must be within Dropbox.
1384
console_print(u"Dropbox daemon stopped.")
1385
except DropboxCommand.CouldntConnectError, e:
1386
console_print(u"Dropbox isn't running!")
1387
- elif len(args) == 1 and args[0] == u"list":
+ elif len(args) == 1 and args[0].decode(sys.getfilesystemencoding()) == u"list":
1388
exclude([])
1389
elif len(args) >= 2:
1390
- sub_command = args[0]
+ sub_command = args[0].decode(sys.getfilesystemencoding())
1391
paths = args[1:]
1392
absolute_paths = [unicode_abspath(path.decode(sys.getfilesystemencoding())) for path in paths]
1393
if sub_command == u"add":
0 commit comments