Skip to content

Commit

Permalink
Bump version to 3.0b8
Browse files Browse the repository at this point in the history
  • Loading branch information
jacebrowning committed Dec 8, 2022
1 parent cbee9bf commit dfeb61e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion doorstop/server/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,10 @@ def run(args, cwd, _):
@hook("before_request")
def strip_path():
request.environ["PATH_INFO"] = request.environ["PATH_INFO"].rstrip("/")
if len(request.environ["PATH_INFO"]) > 0 and request.environ["PATH_INFO"][-5:-1] == ".html":
if (
len(request.environ["PATH_INFO"]) > 0
and request.environ["PATH_INFO"][-5:-1] == ".html"
):
request.environ["PATH_INFO"] = request.environ["PATH_INFO"][:-5]


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]

name = "doorstop"
version = "3.0b7"
version = "3.0b8"
description = "Requirements management using version control."

license = "LGPLv3"
Expand Down

0 comments on commit dfeb61e

Please sign in to comment.