diff options
| author | Michael Merickel <michael@merickel.org> | 2022-03-13 18:23:15 -0500 |
|---|---|---|
| committer | Michael Merickel <michael@merickel.org> | 2022-03-13 18:24:26 -0500 |
| commit | 1f8e290a7b287c5d8aaafd0ff91692d1343ce1a9 (patch) | |
| tree | f490995d5bf34627b9753b35eb2b7767ae68c3dc /tests/pkgs/subrequestapp/__init__.py | |
| parent | 1e439035e41da3767acbcae79689fb05dfdeb317 (diff) | |
| download | pyramid-1f8e290a7b287c5d8aaafd0ff91692d1343ce1a9.tar.gz pyramid-1f8e290a7b287c5d8aaafd0ff91692d1343ce1a9.tar.bz2 pyramid-1f8e290a7b287c5d8aaafd0ff91692d1343ce1a9.zip | |
pyupgrade --py37-plus
Diffstat (limited to 'tests/pkgs/subrequestapp/__init__.py')
| -rw-r--r-- | tests/pkgs/subrequestapp/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pkgs/subrequestapp/__init__.py b/tests/pkgs/subrequestapp/__init__.py index 177f5637b..9c0d0daa1 100644 --- a/tests/pkgs/subrequestapp/__init__.py +++ b/tests/pkgs/subrequestapp/__init__.py @@ -10,7 +10,7 @@ def view_one(request): def view_two(request): # check that request.foo is valid for a subrequest - return 'This came from view_two, foo=%s' % (request.foo,) + return f'This came from view_two, foo={request.foo}' def view_three(request): |
