Skip to content

Commit

Permalink
chore: run tox -e format
Browse files Browse the repository at this point in the history
  • Loading branch information
gforcada committed Jan 7, 2023
1 parent 1a08f30 commit 1a21a56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plone/subrequest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def subrequest(url, root=None, stdout=None, exception_handler=None):
if root is None:
path = root_path + path
else:
path = "{}/{}{}".format(root_path, root.virtual_url_path(), path)
path = f"{root_path}/{root.virtual_url_path()}{path}"
elif root is not None:
path = f"/{root.virtual_url_path()}{path}"
else:
Expand Down

0 comments on commit 1a21a56

Please sign in to comment.