Fix conversion of type 2 terminal colors not working because of missing break

This commit is contained in:
Kovid Goyal
2017-06-03 08:51:00 +05:30
parent 24a4fbd987
commit 47851ebb1b

View File

@@ -99,6 +99,7 @@ as_color(ColorProfile *self, PyObject *val) {
break;
case 2:
col = entry >> 8;
break;
default:
ans = Py_None; Py_INCREF(Py_None);
}