diff --git a/debian/control b/debian/control index 152dfd97..9e9397dc 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: chrono Maintainer: Frederic Peters Section: python Priority: optional -Build-Depends: python3-setuptools, python3-all, python3-django, debhelper (>= 9), dh-python, dh-systemd, ruby-sass +Build-Depends: python3-setuptools, python3-all, python3-django, debhelper (>= 9), dh-python, dh-systemd, sassc Standards-Version: 3.9.6 Package: python3-chrono diff --git a/setup.py b/setup.py index dcee4888..33247b54 100644 --- a/setup.py +++ b/setup.py @@ -96,7 +96,7 @@ class compile_scss(Command): def run(self): sass_bin = None - for program in ('sass', 'sassc'): + for program in ('sassc', 'sass'): sass_bin = find_executable(program) if sass_bin: break