From 99a066158a3bc4ae77c91e06ff1689414fdbf7e3 Mon Sep 17 00:00:00 2001 From: daid Date: Thu, 16 Oct 2014 16:04:30 +0200 Subject: [PATCH] Fix the usage of plugins. --- Cura/util/pluginInfo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cura/util/pluginInfo.py b/Cura/util/pluginInfo.py index 05b50a4f..c881bf88 100644 --- a/Cura/util/pluginInfo.py +++ b/Cura/util/pluginInfo.py @@ -131,7 +131,7 @@ def runPostProcessingPlugins(engineResult): tempfilename = f.name gcode = engineResult.getGCode() while True: - data = gcode.read() + data = gcode.read(16 * 1024) if len(data) == 0: break f.write(data) -- 2.30.2