From 6b9fd4a968dc314ec03c6e5c08c5939667f1634c Mon Sep 17 00:00:00 2001 From: Petr Zemek Date: Mon, 27 Oct 2014 11:46:33 +0100 Subject: [PATCH] Fix a typo in a comment in MethodViewType.__new__. --- flask/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask/views.py b/flask/views.py index a216241a..d72ad234 100644 --- a/flask/views.py +++ b/flask/views.py @@ -113,7 +113,7 @@ class MethodViewType(type): methods.add(key.upper()) # If we have no method at all in there we don't want to # add a method list. (This is for instance the case for - # the baseclass or another subclass of a base method view + # the base class or another subclass of a base method view # that does not introduce new methods). if methods: rv.methods = sorted(methods)