Skip to content

Commit 165213e

Browse files
Fix Runic indentation in parse_variable (#4801)
Co-authored-by: ChrisRackauckas-Claude <accounts@chrisrackauckas.com>
1 parent c5a33c5 commit 165213e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/ModelingToolkitBase/src/systems/abstractsystem.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3603,7 +3603,7 @@ function parse_variable(sys::AbstractSystem, str::AbstractString)
36033603
for ident in eachsplit(str, ('.', NAMESPACE_SEPARATOR))
36043604
ident = Symbol(ident)
36053605
hasproperty(cur, ident) ||
3606-
throw(ArgumentError("System $(nameof(cur)) does not have a subsystem/variable named $(ident)"))
3606+
throw(ArgumentError("System $(nameof(cur)) does not have a subsystem/variable named $(ident)"))
36073607
cur = getproperty(cur, ident)
36083608
end
36093609
else

0 commit comments

Comments
 (0)