From 2587612403ffd1e0bd9efb5dd97b962c0e0717a7 Mon Sep 17 00:00:00 2001 From: Ben Nuttall Date: Fri, 3 Jun 2016 14:40:02 +0100 Subject: [PATCH] Replace tab with spaces --- docs/recipes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/recipes.rst b/docs/recipes.rst index 0cadcf7..3a6cf02 100644 --- a/docs/recipes.rst +++ b/docs/recipes.rst @@ -251,7 +251,7 @@ the Raspberry Pi when the button is held for 2 seconds:: from signal import pause def shutdown(): - check_call(['sudo', 'poweroff']) + check_call(['sudo', 'poweroff']) shutdown_btn = Button(17, hold_time=2) shutdown_btn.when_held = shutdown