From 7a899fbe171d4c984b0b147c64c599ab1297d2d8 Mon Sep 17 00:00:00 2001 From: bekishore Date: Sun, 31 Oct 2021 15:21:20 +0800 Subject: [PATCH] f missing after return (#114) from >>> return "You are not signed in! {web.sign_in_snippet}" to >>> return f"You are not signed in! {web.sign_in_snippet}" --- docs/web_tutorial.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/web_tutorial.rst b/docs/web_tutorial.rst index 21b0f284..ad45ed96 100644 --- a/docs/web_tutorial.rst +++ b/docs/web_tutorial.rst @@ -134,7 +134,7 @@ button in your page: :: else: - return "You are not signed in! {web.sign_in_snippet}" + return f"You are not signed in! {web.sign_in_snippet}" Now, you should be able to sign in with your repl.it account. If you're having issues,