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

Removed py2 lefotver, fix variable name.

This commit is contained in:
2022-10-02 16:13:58 +02:00
committed by gryf
parent cbef13ccea
commit 8f3a22a729
2 changed files with 2 additions and 2 deletions

2
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())