Fix crash when terminal can only display 8 color pairs adrienmalin committed

This commit is contained in:
Adrien MALINGREY 2019-08-31 20:01:27 +02:00
parent b51ba2cc4e
commit 93ae03e5a2

@ -11,7 +11,7 @@ You can install it on Windows with:
pip install --user windows-curses"""
)
else:
curses.COLOR_ORANGE = 8
curses.COLOR_ORANGE = curses.COLOR_WHITE
import random
import sched