Fix clang-format-diff.py script.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@179377 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Jasper 2013-04-12 13:42:36 +00:00
Родитель c6d82ca9b2
Коммит 7a9ed44173
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -65,7 +65,7 @@ def formatRange(r, style):
text = f.read()
command = [binary, '-offset', str(offset), '-length', str(length)]
if style:
command.append('-style', style)
command.extend(['-style', style])
p = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE,
stdin=subprocess.PIPE)
stdout, stderr = p.communicate(input=text)