From 3dc51bc78f806070b27088aef4501b6230e17268 Mon Sep 17 00:00:00 2001 From: Seth Fischer Date: Tue, 10 Jan 2023 21:48:38 +1300 Subject: [PATCH] Docs: correct Python console block type --- docs/user/build-customization.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user/build-customization.rst b/docs/user/build-customization.rst index 6a6a32cfeea..c0b5ae55f65 100644 --- a/docs/user/build-customization.rst +++ b/docs/user/build-customization.rst @@ -119,9 +119,9 @@ You can use this approach to cancel builds that you don't want to complete based `the Unix implementation does this automatically `_ for exit codes greater than 255. - .. code-block:: python + .. code-block:: pycon - >>> sum(list('skip'.encode('ascii'))) + >>> sum(list("skip".encode("ascii"))) 439 >>> 439 % 256 183