Skip to content

Commit

Permalink
remove job level warning for cycle time error
Browse files Browse the repository at this point in the history
  • Loading branch information
dubstar-04 committed May 9, 2020
1 parent 88fe952 commit 9a43391
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/Mod/Path/PathScripts/PathJob.py
Expand Up @@ -370,7 +370,6 @@ def getCycleTime(self):
## 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:
Expand Down

0 comments on commit 9a43391

Please sign in to comment.