From 277d95edecece350361d93b20a09ec11c83ae877 Mon Sep 17 00:00:00 2001 From: Aleksander Kiryk Date: Fri, 4 Mar 2022 08:58:17 +0100 Subject: [PATCH] Don't print gnuplot commands to stdout --- graph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graph.py b/graph.py index 1f3273e..e948ef9 100755 --- a/graph.py +++ b/graph.py @@ -60,7 +60,7 @@ def g(command): if not (gnuplot.poll() is None): print("Error: gnuplot not running!") return - print ("gnuplot> %s" % command) + # print ("gnuplot> %s" % command) try: command = b"%s\n" % command except: