From 77707e1bcb22747c628527268fcb2ddbf7022e10 Mon Sep 17 00:00:00 2001 From: 9and3r <9and3r@gmail.com> Date: Sun, 24 May 2015 23:09:30 +0200 Subject: [PATCH] Fix import GPIO --- mopidy_touchscreen/touch_screen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mopidy_touchscreen/touch_screen.py b/mopidy_touchscreen/touch_screen.py index da3735d..bf8a103 100644 --- a/mopidy_touchscreen/touch_screen.py +++ b/mopidy_touchscreen/touch_screen.py @@ -53,7 +53,7 @@ class TouchScreen(pykka.ThreadingActor, core.CoreListener): self.gpio = config['touchscreen']['gpio'] if self.gpio: - from input import GPIOManager + from .input.gpio_input_manager import GPIOManager pins = {} pins['left'] = config['touchscreen']['gpio_left']