From 8c3ec5a792cd81459ead66b237b9775e4bec9262 Mon Sep 17 00:00:00 2001 From: Sergey Tikhonov Date: Wed, 27 Jan 2016 14:35:58 +0300 Subject: [PATCH] fix typo --- aiohttp/multipart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiohttp/multipart.py b/aiohttp/multipart.py index 049ebcc376d..a899dbb37f9 100644 --- a/aiohttp/multipart.py +++ b/aiohttp/multipart.py @@ -318,7 +318,7 @@ def _read_chunk_from_stream(self, size): # boundary not found pass else: - # pushing boundary back to tontent + # pushing boundary back to content self._content.unread_data(window[idx:]) if size > idx: self._prev_chunk = self._prev_chunk[:idx]