Bug 921751 Make Preprocessor.py's -o option honour requested newline type r=ted

This commit is contained in:
Neil Rashbrook 2013-10-01 19:15:59 +01:00
Родитель 75a83d636a
Коммит 9fa359b05c
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -160,7 +160,7 @@ class Preprocessor:
except OSError as error:
if error.errno != errno.EEXIST:
raise
self.out = open(options.output, 'w')
self.out = open(options.output, 'wb')
if defaultToStdin and len(args) == 0:
args = [sys.stdin]
includes.extend(args)