1
0
mirror of https://github.com/gryf/mc_adbfs.git synced 2025-12-18 20:10:21 +01:00

fix typo: quite->quote

This commit is contained in:
fanick1
2022-12-28 23:31:02 +01:00
parent b1a6219d21
commit 9cfa834604

2
adbfs
View File

@@ -459,7 +459,7 @@ class Adb(object):
if not root: if not root:
lscmd = self.conf.box['ls'] lscmd = self.conf.box['ls']
else: else:
lscmd = self.conf.box['rls'].format(shlex.quite(root.filepath)) lscmd = self.conf.box['rls'].format(shlex.quote(root.filepath))
command = self._shell_cmd(True, *shlex.split(lscmd)) command = self._shell_cmd(True, *shlex.split(lscmd))