Skip to content

Commit e2e968b

Browse files
committed
Merge pull request #66 from le717/patch-1
Fix typo in expanded output style
2 parents 8d6a261 + 9040275 commit e2e968b

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

docs/changes.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ Version 0.8.1
66

77
To be released.
88

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]
911
- Fixed broken FreeBSD build. [:issue:`65` by Toshiharu Moriyama]
1012

1113

pysass.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ static char PySass_doc[] = "The thin binding of libsass for Python.";
513513
PyObject* PySass_make_enum_dict() {
514514
PyObject* dct = PyDict_New();
515515
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));
517517
PyDict_SetItemString(dct, "compact", PySass_Int_FromLong(SASS_STYLE_COMPACT));
518518
PyDict_SetItemString(dct, "compressed", PySass_Int_FromLong(SASS_STYLE_COMPRESSED));
519519
return dct;

0 commit comments

Comments
 (0)