From 9040275466cd959120dc3c7a4d82416683c7bf3b Mon Sep 17 00:00:00 2001 From: Triangle717 Date: Tue, 12 May 2015 17:04:12 -0400 Subject: [PATCH] Fix typo in expanded output style --- pysass.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pysass.cpp b/pysass.cpp index 64046565..673a4acd 100644 --- a/pysass.cpp +++ b/pysass.cpp @@ -513,7 +513,7 @@ static char PySass_doc[] = "The thin binding of libsass for Python."; PyObject* PySass_make_enum_dict() { PyObject* dct = PyDict_New(); PyDict_SetItemString(dct, "nested", PySass_Int_FromLong(SASS_STYLE_NESTED)); - PyDict_SetItemString(dct, "expected", PySass_Int_FromLong(SASS_STYLE_EXPANDED)); + PyDict_SetItemString(dct, "expanded", PySass_Int_FromLong(SASS_STYLE_EXPANDED)); PyDict_SetItemString(dct, "compact", PySass_Int_FromLong(SASS_STYLE_COMPACT)); PyDict_SetItemString(dct, "compressed", PySass_Int_FromLong(SASS_STYLE_COMPRESSED)); return dct;