diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-03-14 06:43:59 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-03-14 06:43:59 +0100 |
commit | 778f1399ce9b068b290a25ca275367035d91c89d (patch) | |
tree | 366b210f57f52d201acdaaf9069672c7e881ea05 | |
parent | e8428262c13c6b3727d9cebeb9a51a0dd83a10ca (diff) |
runner: add missing include for exception handler
-rw-r--r-- | lib/runner.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/runner.py b/lib/runner.py index e0d51f4..87c41c5 100644 --- a/lib/runner.py +++ b/lib/runner.py @@ -14,6 +14,7 @@ import re import serial import serial.threaded import subprocess +import sys import time class SerialReader(serial.threaded.Protocol): |