Skip to content

Commit f550cec

Browse files
committed
Update temperature out of bounds error to include acceptable bounds
1 parent b59787d commit f550cec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

evora/common/classes/acquisition.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1013,7 +1013,7 @@ def onCool(self, event):
10131013
self.stopCool.Enable(True)
10141014

10151015
else:
1016-
dialog = wx.MessageDialog(None, "Temperature is not within the bounds.", "", wx.OK | wx.ICON_ERROR)
1016+
dialog = wx.MessageDialog(None, "Temperature is not within acceptable bounds (-100.0 to -10.0.)", "", wx.OK | wx.ICON_ERROR)
10171017
dialog.ShowModal()
10181018
dialog.Destroy()
10191019

0 commit comments

Comments
 (0)