diff options
| author | Tim Graham <timograham@gmail.com> | 2017-09-07 08:16:21 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-09-07 08:16:21 -0400 |
| commit | 6e4c6281dbb7ee12bcdc22620894edb4e9cf623f (patch) | |
| tree | 1c21218d4b6f00c499f18943d5190ebe7b5248c9 /tests/staticfiles_tests/storage.py | |
| parent | 8b2515a450ef376b9205029090af0a79c8341bd7 (diff) | |
Reverted "Fixed #27818 -- Replaced try/except/pass with contextlib.suppress()."
This reverts commit 550cb3a365dee4edfdd1563224d5304de2a57fda
because try/except performs better.
Diffstat (limited to 'tests/staticfiles_tests/storage.py')
| -rw-r--r-- | tests/staticfiles_tests/storage.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/staticfiles_tests/storage.py b/tests/staticfiles_tests/storage.py index 0dcfd77a70..7a1f72c130 100644 --- a/tests/staticfiles_tests/storage.py +++ b/tests/staticfiles_tests/storage.py @@ -1,5 +1,4 @@ import os -from contextlib import suppress from datetime import datetime, timedelta from django.conf import settings @@ -49,8 +48,10 @@ class PathNotImplementedStorage(storage.Storage): def delete(self, name): name = self._path(name) - with suppress(FileNotFoundError): + try: os.remove(name) + except FileNotFoundError: + pass def path(self, name): raise NotImplementedError |
