From 3cdc59d7f19c0b75a2568b3328035d1e7a6f7f5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Wed, 5 Jul 2017 08:58:42 +0200 Subject: [PATCH] Fix offset passing to analysis subprocess --- src/octoprint/filemanager/analysis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/octoprint/filemanager/analysis.py b/src/octoprint/filemanager/analysis.py index 93c9d77f..33a7a2e8 100644 --- a/src/octoprint/filemanager/analysis.py +++ b/src/octoprint/filemanager/analysis.py @@ -329,7 +329,7 @@ class GcodeAnalysisQueue(AbstractAnalysisQueue): "--max-t={}".format(max_extruders), "--throttle={}".format(throttle), "--throttle-lines={}".format(throttle_lines)] for offset in offsets[1:]: - command += ["--offset", offset[0], offset[1]] + command += ["--offset", str(offset[0]), str(offset[1])] if g90_extruder: command += ["--g90-extruder"] command.append(self._current.absolute_path)