Fixed extra parameters in warning call.

This commit is contained in:
SET 2020-08-14 18:01:41 -03:00
parent 05fe7fc62e
commit 289766dbc0
1 changed files with 1 additions and 1 deletions

View File

@ -732,7 +732,7 @@ class SchematicComponent(object):
yr = int(res[1])
if comp.x != xr or comp.y != yr:
logger.warning('Inconsistent position for component {} ({},{} vs {},{})'.
format(comp.f_ref, comp.x, comp.y, xr, yr), line, _sch_line_number)
format(comp.f_ref, comp.x, comp.y, xr, yr))
# Orientation matrix
line = _get_line(f)
if line[0] != '\t':