Skip to content

Commit

Permalink
[lit] Remove unnecessary list copy.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187934 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
ddunbar committed Aug 7, 2013
1 parent 91a62c3 commit 6104a4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/lit/lit/LitConfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def __init__(self, progname, path, quiet,
# The name of the test runner.
self.progname = progname
# The items to add to the PATH environment variable.
self.path = list([str(p) for p in path])
self.path = [str(p) for p in path]
self.quiet = bool(quiet)
self.useValgrind = bool(useValgrind)
self.valgrindLeakCheck = bool(valgrindLeakCheck)
Expand Down

0 comments on commit 6104a4e

Please sign in to comment.