Skip to content

Commit

Permalink
chisel 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
craigahobbs@gmail.com authored and craigahobbs@gmail.com committed Jun 18, 2021
1 parent 6ea6435 commit d6b4d09
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/chisel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
well-tested, schema-validated JSON web APIs.
"""

__version__ = '0.9.129'
__version__ = '1.0.0'

from .action import \
Action, \
Expand Down
4 changes: 2 additions & 2 deletions src/chisel/request.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,9 +182,9 @@ def __call__(self, environ, unused_start_response):

class StaticRequest(Request):
"""
A static resoruce request
A static resource request
:param str name: The request name. By default the name is "static_<redirect_url>".
:param str name: The request name. The default name is the callback function's name.
:param str content: The static content
:param str content_type: Optional content type string. If None, the content type is auto-determined.
:param list(tuple) urls: The list of URL method/path tuples. The first value is the HTTP request method (e.g. 'GET')
Expand Down

0 comments on commit d6b4d09

Please sign in to comment.