Commit 9552b055 authored by Mikhail Karpenko's avatar Mikhail Karpenko

Add newline character to temperature output

parent 653164b2
...@@ -188,7 +188,7 @@ class temp_monitor(): ...@@ -188,7 +188,7 @@ class temp_monitor():
self.shutdown() self.shutdown()
self.core_temp_out_f.seek(0) self.core_temp_out_f.seek(0)
self.core_temp_out_f.write(str(core_temp)) self.core_temp_out_f.write(str(core_temp) + "\n")
self.core_temp_out_f.flush() self.core_temp_out_f.flush()
# print "Core temperature: '%f', median: '%f'" % (core_temp, avg) # print "Core temperature: '%f', median: '%f'" % (core_temp, avg)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment