Skip to content

Commit

Permalink
Merge pull request #2962 from Alex-developer/v2023.05.01_03
Browse files Browse the repository at this point in the history
Hotfix to remove colour error
  • Loading branch information
Alex-developer authored Sep 6, 2023
2 parents 8b3c2df + ff8fc6a commit 1d7ece6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/modules/allsky_overlay.py
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ def _convertColour(self, name, value):
try:
r,g,b = ImageColor.getcolor(value, "RGB")
except:
s.log(0, f"ERROR: The colour '{value}' for field '{name}' is NOT valid - Defaulting to white.")
#s.log(0, f"ERROR: The colour '{value}' for field '{name}' is NOT valid - Defaulting to white.")
r = 255
g = 255
b = 255
Expand Down

0 comments on commit 1d7ece6

Please sign in to comment.