Fixed extra parameters in warning call.
This commit is contained in:
parent
05fe7fc62e
commit
289766dbc0
|
|
@ -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':
|
||||
|
|
|
|||
Loading…
Reference in New Issue