1
0
mirror of https://github.com/django/django.git synced 2025-10-24 06:06:09 +00:00

Removed many uses of bare "except:", which were either going to a) silence real issues, or b) were impossible to hit.

This commit is contained in:
Alex Gaynor
2012-09-07 15:06:23 -04:00
parent 257c4011cb
commit 335a9f9cf1
10 changed files with 31 additions and 48 deletions

View File

@@ -100,7 +100,7 @@ class FileUploadTests(TestCase):
try:
os.unlink(file1.name)
except:
except OSError:
pass
self.assertEqual(response.status_code, 200)