Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.

Commit 9040275

Browse files
author
Triangle717
committed
Fix typo in expanded output style
1 parent 8d6a261 commit 9040275

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)