diff options
| author | Tom <tom@tomforb.es> | 2017-05-20 22:16:36 +0100 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-05-27 13:59:05 -0400 |
| commit | 7afb47646920ab3835dfa1750257dace01883a4b (patch) | |
| tree | 8ee40e80cb841075fb6c282dfd72ed108b951066 /django/http/multipartparser.py | |
| parent | 94475aab800fc492853b67ada6b6b33d47554393 (diff) | |
Fixed #28226 -- Replaced use of str.join() with concatenation.
Diffstat (limited to 'django/http/multipartparser.py')
| -rw-r--r-- | django/http/multipartparser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/http/multipartparser.py b/django/http/multipartparser.py index 080f45f8ef..f66cf2772f 100644 --- a/django/http/multipartparser.py +++ b/django/http/multipartparser.py @@ -401,7 +401,7 @@ class LazyStream: return self._update_unget_history(len(bytes)) self.position -= len(bytes) - self._leftover = b''.join([bytes, self._leftover]) + self._leftover = bytes + self._leftover def _update_unget_history(self, num_bytes): """ |
