1
0
mirror of https://github.com/gryf/mc_adbfs.git synced 2026-03-26 13:33:31 +01:00

3 Commits

Author SHA1 Message Date
8f3a22a729 Removed py2 lefotver, fix variable name. 2022-12-31 11:23:42 +01:00
cbef13ccea Merge pull request #5 from fanick1/master
fix typo: quite->quote
2022-12-29 19:54:58 +01:00
fanick1
9cfa834604 fix typo: quite->quote 2022-12-28 23:31:02 +01:00
2 changed files with 3 additions and 3 deletions

View File

@@ -32,7 +32,7 @@ endif
ifeq ($(FL8_EXISTS), 0)
virtualenv_flake8:
virtualenv -p python2 $(FL8_VENV)
virtualenv -p python3 $(FL8_VENV)
$(FL8_VENV)/bin/pip install flake8
else
virtualenv_flake8:

4
adbfs
View File

@@ -413,7 +413,7 @@ class Adb(object):
sys.stderr.write('Cannot read directory. Is device connected?\n')
return 1
lines = [l.strip() for l in lines.split('\n') if l.strip()]
lines = [line.strip() for line in lines.split('\n') if line.strip()]
if len(lines) == 1:
reg_match = self.file_re.match(lines[0])
entry = File(**reg_match.groupdict())
@@ -459,7 +459,7 @@ class Adb(object):
if not root:
lscmd = self.conf.box['ls']
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))