Skip to content

Commit

Permalink
Hotfix to remove colour error
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-developer committed Sep 5, 2023
1 parent 374e572 commit ff8fc6a
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 ff8fc6a

Please sign in to comment.