Fix python3 compatibility bug in spack edit command (#6748)
In Python 2, filter() returns a list, but in Python 3, filter() returns an iterator, and iterators have no length.
This commit is contained in:
parent
feb4f1b387
commit
1ce0c1b556
1 changed files with 2 additions and 2 deletions
|
@ -120,8 +120,8 @@ def edit(parser, args):
|
|||
if not os.path.exists(path):
|
||||
files = glob.glob(path + '*')
|
||||
blacklist = ['.pyc', '~'] # blacklist binaries and backups
|
||||
files = filter(lambda x: all(s not in x for s in blacklist),
|
||||
files)
|
||||
files = list(filter(
|
||||
lambda x: all(s not in x for s in blacklist), files))
|
||||
if len(files) > 1:
|
||||
m = 'Multiple files exist with the name {0}.'.format(name)
|
||||
m += ' Please specify a suffix. Files are:\n\n'
|
||||
|
|
Loading…
Reference in a new issue