Skip to content

Commit

Permalink
Merge pull request #390 from jfinkels/patch-1
Browse files Browse the repository at this point in the history
Added PATCH method to the list of HTTP method functions for MethodView
  • Loading branch information
mitsuhiko committed Jan 24, 2012
2 parents fbbe147 + c5ebf9a commit 476f8d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flask/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


http_method_funcs = frozenset(['get', 'post', 'head', 'options',
'delete', 'put', 'trace'])
'delete', 'put', 'trace', 'patch'])


class View(object):
Expand Down

0 comments on commit 476f8d5

Please sign in to comment.