tomh: s._starttime may not be a string
(Boeing r1843)
This commit is contained in:
parent
9ba3d29768
commit
1f5397c558
1 changed files with 1 additions and 1 deletions
|
@ -218,7 +218,7 @@ class CoreServices(ConfigurableManager):
|
||||||
services = sorted(node.services,
|
services = sorted(node.services,
|
||||||
key=lambda service: service._startindex)
|
key=lambda service: service._startindex)
|
||||||
for s in services:
|
for s in services:
|
||||||
if len(s._starttime) > 0:
|
if len(str(s._starttime)) > 0:
|
||||||
try:
|
try:
|
||||||
t = float(s._starttime)
|
t = float(s._starttime)
|
||||||
if t > 0.0:
|
if t > 0.0:
|
||||||
|
|
Loading…
Reference in a new issue