From a0e4b1996540759dfb313a411429d6ad9b631e72 Mon Sep 17 00:00:00 2001 From: Balthasar Reuter Date: Thu, 4 Jun 2015 16:03:06 +0200 Subject: [PATCH] Debug output --- photobooth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/photobooth.py b/photobooth.py index 99af9c6..7e3a44a 100755 --- a/photobooth.py +++ b/photobooth.py @@ -412,7 +412,7 @@ def setup_gpio(): def handle_gpio(channel): """Interrupt handler for GPIO events""" - print("Channel " + channel + " triggered") + print("Channel " + str(channel) + " triggered") display.trigger_event(gpio_pygame_event, channel) def teardown(exit_code=0):