Skip to content
Snippets Groups Projects
Commit cde0c720 authored by Dario Barghini's avatar Dario Barghini
Browse files

Fixed bug of pre/after midnight selection in plot.py

parent f329c684
No related branches found
No related tags found
No related merge requests found
......@@ -264,7 +264,7 @@ class SQMData(object):
self.aftermidnight.label_dates=[]
if localdatetime.hour > 12:
if localdatetime.hour >= 12:
self.premidnight.utcdates.append(utcdatetime)
self.premidnight.localdates.append(localdatetime)
self.premidnight.temperatures.append(temperature)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment