diff --git a/src/blackd/__init__.py b/src/blackd/__init__.py index ba4750b8298..24abef54b3a 100644 --- a/src/blackd/__init__.py +++ b/src/blackd/__init__.py @@ -146,11 +146,13 @@ async def handle(request: web.Request, executor: Executor) -> web.Response: ) # Preserve CRLF line endings - if req_str[req_str.find("\n") - 1] == "\r": + nl = req_str.find("\n") + if nl > 0 and req_str[nl - 1] == "\r": formatted_str = formatted_str.replace("\n", "\r\n") # If, after swapping line endings, nothing changed, then say so if formatted_str == req_str: raise black.NothingChanged + del nl # Put the source first line back req_str = header + req_str