File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ Version 0.8.1
6
6
7
7
To be released.
8
8
9
+ - Fixed a bug that there was no ``'expanded' `` in :const: `sass.OUTPUT_STYLES `
10
+ but ``'expected' `` instead which is a typo. [:issue: `66 ` by Triangle717]
9
11
- Fixed broken FreeBSD build. [:issue: `65 ` by Toshiharu Moriyama]
10
12
11
13
Original file line number Diff line number Diff line change @@ -513,7 +513,7 @@ static char PySass_doc[] = "The thin binding of libsass for Python.";
513
513
PyObject* PySass_make_enum_dict () {
514
514
PyObject* dct = PyDict_New ();
515
515
PyDict_SetItemString (dct, " nested" , PySass_Int_FromLong (SASS_STYLE_NESTED));
516
- PyDict_SetItemString (dct, " expected " , PySass_Int_FromLong (SASS_STYLE_EXPANDED));
516
+ PyDict_SetItemString (dct, " expanded " , PySass_Int_FromLong (SASS_STYLE_EXPANDED));
517
517
PyDict_SetItemString (dct, " compact" , PySass_Int_FromLong (SASS_STYLE_COMPACT));
518
518
PyDict_SetItemString (dct, " compressed" , PySass_Int_FromLong (SASS_STYLE_COMPRESSED));
519
519
return dct;
You can’t perform that action at this time.
0 commit comments