diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2016-12-01 10:55:04 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2016-12-01 10:55:04 -0500 |
commit | 9a31c068c40c2c21f2201fa0f05029a5c11dab3c (patch) | |
tree | 7dc98ce093bf553fda2df999c15a1cd155bf570f | |
parent | babc9e7a1e2d6a8dc7a826ff66c0a11b8a1e556a (diff) | |
download | kutter-9a31c068c40c2c21f2201fa0f05029a5c11dab3c.tar.gz kutter-9a31c068c40c2c21f2201fa0f05029a5c11dab3c.tar.xz kutter-9a31c068c40c2c21f2201fa0f05029a5c11dab3c.zip |
klippy: Fix typo causing missing stats on 'exit_eof' case
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
-rw-r--r-- | klippy/klippy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/klippy.py b/klippy/klippy.py index d1bf26e8..361075b8 100644 --- a/klippy/klippy.py +++ b/klippy/klippy.py @@ -258,7 +258,7 @@ def main(): time.sleep(1.) logging.info("Restarting printer") continue - elif res == 'eof_stats': + elif res == 'exit_eof': printer.disconnect() break |