From 2ec31c7521b4c771e7e4568515fca8e9151c92d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Mon, 15 Dec 2014 11:38:17 +0100 Subject: [PATCH] Removed a left-over from print time estimation experiments that got overlooked --- src/octoprint/filemanager/analysis.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/octoprint/filemanager/analysis.py b/src/octoprint/filemanager/analysis.py index 296b861a..f746c228 100644 --- a/src/octoprint/filemanager/analysis.py +++ b/src/octoprint/filemanager/analysis.py @@ -150,8 +150,6 @@ class GcodeAnalysisQueue(AbstractAnalysisQueue): result = dict() if self._gcode.totalMoveTimeMinute: result["estimatedPrintTime"] = self._gcode.totalMoveTimeMinute * 60 - if self._gcode.timeDistribution: - result["printTimeDistribution"] = self._gcode.timeDistribution if self._gcode.extrusionAmount: result["filament"] = dict() for i in range(len(self._gcode.extrusionAmount)):