From d6c2e654d6703153ac716c232e2536dfddb443e2 Mon Sep 17 00:00:00 2001 From: Enrico Zini Date: Sun, 10 Nov 2024 20:55:27 +0100 Subject: [PATCH] Fixed issue in example code --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2a78fc3..743c6e3 100644 --- a/README.md +++ b/README.md @@ -268,7 +268,7 @@ stderr (the default). >>> from icecream import ic >>> >>> def warn(s): ->>> logging.warning(s) +>>> logging.warning("%s", s) >>> >>> ic.configureOutput(outputFunction=warn) >>> ic('eep')