diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2016-11-30 15:05:26 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2016-11-30 21:19:44 -0500 |
commit | 3806ed882a262b2001d672c0829280c63d1628d6 (patch) | |
tree | c0ee1beca81b49acb12a8e49409d1bc76571defa /klippy/klippy.py | |
parent | ce7e7c40486561d832a03aa95fb003a0cdd3686d (diff) | |
download | kutter-3806ed882a262b2001d672c0829280c63d1628d6.tar.gz kutter-3806ed882a262b2001d672c0829280c63d1628d6.tar.xz kutter-3806ed882a262b2001d672c0829280c63d1628d6.zip |
mcu: Raise a config error on an invalid pin name in the config file
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/klippy.py')
-rw-r--r-- | klippy/klippy.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/klippy/klippy.py b/klippy/klippy.py index 151bd1c6..849c5b8b 100644 --- a/klippy/klippy.py +++ b/klippy/klippy.py @@ -34,6 +34,7 @@ Printer is shutdown """ class ConfigWrapper: + error = ConfigParser.Error def __init__(self, printer, section): self.printer = printer self.section = section |