Using this simple script here: ``` python import sassutils.builder result = sassutils.builder.build_directory(".", ".", "compressed") print(result) # Outputs {'style.scss': 'style.scss.css'} ``` And indeed, the output file name is `style.scss.css`. Ideally it should be called simply `style.css`. :)