Merge pull request #3041 from obestwalter/patch-1

Fix typo in class name
This commit is contained in:
David Lord 2018-12-21 06:47:39 -08:00 committed by GitHub
commit 62621ba0fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -107,7 +107,7 @@ register and raise that exception class. ::
code = 507
description = 'Not enough storage space.'
app.register_error_handler(InsuffcientStorage, handle_507)
app.register_error_handler(InsufficientStorage, handle_507)
raise InsufficientStorage()