From 40c70d127d0ea14b5de7a94256cb7202b7ecf8a5 Mon Sep 17 00:00:00 2001 From: Andrey Kamaev Date: Fri, 6 Jan 2012 08:44:28 +0000 Subject: [PATCH] Fixed bug in summary.py --- modules/ts/misc/summary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ts/misc/summary.py b/modules/ts/misc/summary.py index aa6908a..df7f1d4 100644 --- a/modules/ts/misc/summary.py +++ b/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 -- 2.7.4