tools/pyboard.py: Use slice del instead of list.clear() for Py2 compat.
Python 2 does not have list.clear().
This commit is contained in:
parent
83afd48ad9
commit
1cadb12d1c
|
@ -567,7 +567,7 @@ def main():
|
|||
# do filesystem commands, if given
|
||||
if args.filesystem:
|
||||
filesystem_command(pyb, args.files)
|
||||
args.files.clear()
|
||||
del args.files[:]
|
||||
|
||||
# run the command, if given
|
||||
if args.command is not None:
|
||||
|
|
Loading…
Reference in New Issue