Fixed bug in summary.py

pull/13383/head
Andrey Kamaev 13 years ago
parent e9901306c2
commit 40c70d127d
  1. 2
      modules/ts/misc/summary.py

@ -55,7 +55,7 @@ if __name__ == "__main__":
files.extend([ x for x in flist if x not in seen and not seen.add(x)])
else:
fname = os.path.abspath(arg)
if x not in seen and not seen.add(x):
if fname not in seen and not seen.add(fname):
files.append(fname)
# read all passed files

Loading…
Cancel
Save