File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -215,7 +215,7 @@ proc is_physical_only_master { master } {
215215 " ENDCAP*" ]
216216 set master_type [$master getType]
217217 foreach pattern $physical_only_type_patterns {
218- if {[string match $pattern $master_type ]} {
218+ if { [string match $pattern $master_type ] } {
219219 return 1
220220 }
221221 }
@@ -224,13 +224,13 @@ proc is_physical_only_master { master } {
224224
225225# Finds all physical-only masters in the current database and
226226# returns their names.
227- proc find_physical_only_masters {} {
227+ proc find_physical_only_masters { } {
228228 set db [::ord::get_db]
229229 set libs [$db getLibs]
230230 set physical_only_masters [list ]
231231 foreach lib $libs {
232232 foreach master [$lib getMasters] {
233- if {[is_physical_only_master $master ]} {
233+ if { [is_physical_only_master $master ] } {
234234 lappend physical_only_masters [$master getName]
235235 }
236236 }
You can’t perform that action at this time.
0 commit comments