remove job level warning for cycle time error

This commit is contained in:
Daniel Wood
2020-05-09 08:22:26 +01:00
parent 88fe95201c
commit 9a43391b32

View File

@@ -370,7 +370,6 @@ class ObjectJob:
## convert the formatted time from HH:MM:SS to just seconds
opCycleTime = sum(x * int(t) for x, t in zip([1, 60, 3600], reversed(formattedCycleTime.split(":"))))
except:
FreeCAD.Console.PrintWarning("Error converting the operations cycle time. Job Cycle time may be innacturate\n")
continue
if opCycleTime > 0: