From 35f4b9e6014b4143fdcf59becd64a8c3c2d2f4fb Mon Sep 17 00:00:00 2001 From: Kyle Evans Date: Fri, 7 Oct 2016 14:45:59 -0500 Subject: [PATCH] print() uses file=, not stream= -- fix that, fix the error --- src/octoprint/daemon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/octoprint/daemon.py b/src/octoprint/daemon.py index af84c9e0..b6888271 100644 --- a/src/octoprint/daemon.py +++ b/src/octoprint/daemon.py @@ -172,4 +172,4 @@ class Daemon: @classmethod def error(cls, line): - print(line, stream=sys.stderr) + print(line, file=sys.stderr)