diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2021-10-08 13:00:11 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2021-10-08 13:00:11 -0400 |
commit | 21d5a34d220e0d609cc89414d120e8c375d7e394 (patch) | |
tree | a9a57b8d9ba46683e946b2bbae87d7a79ff77983 | |
parent | 5251bf23f1b59f9e75a58651bee3ac1989b910f4 (diff) | |
download | kutter-21d5a34d220e0d609cc89414d120e8c375d7e394.tar.gz kutter-21d5a34d220e0d609cc89414d120e8c375d7e394.tar.xz kutter-21d5a34d220e0d609cc89414d120e8c375d7e394.zip |
console: Fix Python2 compatibility
Make sure to import util prior to reactor.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rwxr-xr-x | klippy/console.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/console.py b/klippy/console.py index adbc77be..b3075912 100755 --- a/klippy/console.py +++ b/klippy/console.py @@ -5,7 +5,7 @@ # # This file may be distributed under the terms of the GNU GPLv3 license. import sys, optparse, os, re, logging -import reactor, serialhdl, pins, util, msgproto, clocksync +import util, reactor, serialhdl, pins, msgproto, clocksync help_txt = """ This is a debugging console for the Klipper micro-controller. |