Skip to content

Commit

Permalink
Merge pull request #3164 from Alex-developer/Point-Release-4
Browse files Browse the repository at this point in the history
Add missing modules
  • Loading branch information
Alex-developer authored Dec 7, 2023
2 parents f4d84c1 + 34fa8f4 commit 0a651da
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions config_repo/requirements-32.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ astral
pytz
scipy<=1.8.1
paho-mqtt
scikit-image
photutils
astropy
suncalc
Expand Down
1 change: 1 addition & 0 deletions config_repo/requirements-64.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ astral
pytz
scipy
paho-mqtt
scikit-image
photutils
astropy
suncalc
Expand Down
1 change: 1 addition & 0 deletions config_repo/requirements-bookworm-32.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ astral
pytz
scipy<=1.11.3
paho-mqtt
scikit-image
photutils
astropy
suncalc
Expand Down
1 change: 1 addition & 0 deletions config_repo/requirements-bookworm-64.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ astral
pytz
scipy
paho-mqtt
scikit-image
photutils
astropy
suncalc
Expand Down
4 changes: 3 additions & 1 deletion scripts/modules/allsky_overlay.py
Original file line number Diff line number Diff line change
Expand Up @@ -782,7 +782,9 @@ def _getValue(self, placeHolder, variableType, format=None, empty=''):
s.log(4, "WARNING: data field {0} expired. File time {1}, now {2}. Expiry {3} Seconds. Age {4} Seconds"
.format(placeHolder, fileTimeHR, nowTimeHR, self._extraData[envCheck]["expires"], age))
valueOk = False
expiredText = self._overlayConfig["settings"]["defaultexpirytext"]
expiredText = ''
if 'defaultexpirytext' in self._overlayConfig["settings"]:
expiredText = self._overlayConfig["settings"]["defaultexpirytext"]
if expiredText != "":
value = expiredText

Expand Down

0 comments on commit 0a651da

Please sign in to comment.