Commit 40c70d12 authored by Andrey Kamaev's avatar Andrey Kamaev

Fixed bug in summary.py

parent e9901306
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment