[PCB Replace][KiCad 8][Fixed] Default date regex
This commit is contained in:
parent
bff871660e
commit
e2f3b755b3
|
|
@ -54,7 +54,7 @@ class PCB_Replace(Base_Replace): # noqa: F821
|
||||||
if o.date_command:
|
if o.date_command:
|
||||||
# Convert it into another replacement
|
# Convert it into another replacement
|
||||||
t = TagReplacePCB()
|
t = TagReplacePCB()
|
||||||
t.tag = r'^ \(date (\S+|"(?:[^"]|\\")+")\)$'
|
t.tag = r'^( |\t\t)\(date (\S+|"(?:[^"]|\\")+")\)$'
|
||||||
t.command = o.date_command
|
t.command = o.date_command
|
||||||
t.before = ' (date "'
|
t.before = ' (date "'
|
||||||
t.after = '")'
|
t.after = '")'
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue