From 18a224adb9429c425d6870d5ffdbe3e0c72a0538 Mon Sep 17 00:00:00 2001 From: SET Date: Fri, 14 Aug 2020 16:42:20 -0300 Subject: [PATCH] Changed one of the nknown DCM entry errors to make them different. --- kiplot/kicad/v5_sch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kiplot/kicad/v5_sch.py b/kiplot/kicad/v5_sch.py index 5df28b2a..abb8883b 100644 --- a/kiplot/kicad/v5_sch.py +++ b/kiplot/kicad/v5_sch.py @@ -476,7 +476,7 @@ class DocLibEntry(object): elif line[0] == 'F': self.datasheet = line[2:].lstrip() else: - logger.warning('Unknown DCM entry `{}` on line {}'.format(line, _sch_line_number)) + logger.warning('Unknown DCM attribute `{}` on line {}'.format(line, _sch_line_number)) line = _get_line_dcm(f) def __repr__(self):