From 205c943deda542b0c0df2f1b9ce3bbe72d80eef8 Mon Sep 17 00:00:00 2001 From: Sebastian Jakubiak Date: Mon, 13 May 2019 22:07:37 +0200 Subject: [PATCH] Fix misplaced paren in docs --- flask/ctx.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flask/ctx.py b/flask/ctx.py index 8472c920..ec8e787e 100644 --- a/flask/ctx.py +++ b/flask/ctx.py @@ -170,7 +170,7 @@ def has_request_context(): self.remote_addr = remote_addr Alternatively you can also just test any of the context bound objects - (such as :class:`request` or :class:`g` for truthness):: + (such as :class:`request` or :class:`g`) for truthness:: class User(db.Model):