Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kliment/Printrun.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvolconst <20997907+volconst@users.noreply.github.com>2022-01-13 18:45:02 +0300
committervolconst <20997907+volconst@users.noreply.github.com>2022-01-13 18:45:02 +0300
commitdb31aed2e557e9ff7c437b87608212736697aa0d (patch)
tree72afa6e4e8b8266d2c549c1993b2166ae80982d1
parentfaade5b9f33779a9b08286498a15eefd0abd13e0 (diff)
Fix empty temperature graph
Fixes #1234
-rw-r--r--printrun/pronsole.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/printrun/pronsole.py b/printrun/pronsole.py
index 6708db9..c8c1ef0 100644
--- a/printrun/pronsole.py
+++ b/printrun/pronsole.py
@@ -59,7 +59,7 @@ try:
except:
READLINE = False # neither readline module is available
-tempreading_exp = re.compile("(^T:| T:)")
+tempreading_exp = re.compile('\\bT\d*:')
REPORT_NONE = 0
REPORT_POS = 1