From: Daniel Dunbar Date: Wed, 10 Feb 2010 04:10:10 +0000 (+0000) Subject: Remove stray DOS newline. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3f451cafb5ba3a022c8e05cf2d054835f807dd11;p=oota-llvm.git Remove stray DOS newline. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95765 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/lit/lit/ShUtil.py b/utils/lit/lit/ShUtil.py index c4bbb3d3731..c8f933245d3 100644 --- a/utils/lit/lit/ShUtil.py +++ b/utils/lit/lit/ShUtil.py @@ -66,7 +66,7 @@ class ShLexer: return (tok[0], num) elif c == '"': self.eat() - str += self.lex_arg_quoted('"') + str += self.lex_arg_quoted('"') elif not self.win32Escapes and c == '\\': # Outside of a string, '\\' escapes everything. self.eat()