Fix typo in class name

This commit is contained in:
Oliver Bestwalter 2018-12-21 15:36:58 +01:00 committed by GitHub
parent f2dd7eff8e
commit d8400d7cac
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 code = 507
description = 'Not enough storage space.' description = 'Not enough storage space.'
app.register_error_handler(InsuffcientStorage, handle_507) app.register_error_handler(InsufficientStorage, handle_507)
raise InsufficientStorage() raise InsufficientStorage()