diff --git a/debian/control b/debian/control index fc0e1e17..ee0aa136 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: combo Maintainer: Jérôme Schneider Section: python Priority: optional -Build-Depends: python-setuptools (>= 0.6b3), python-all (>= 2.6.6-3), debhelper (>= 9), python-django, dh-python, dh-systemd, ruby-sass +Build-Depends: python-setuptools (>= 0.6b3), python-all (>= 2.6.6-3), debhelper (>= 9), python-django, dh-python, dh-systemd, sassc Standards-Version: 3.9.6 X-Python-Version: >= 2.7 diff --git a/setup.py b/setup.py index 88ba3e73..e54ab2b8 100644 --- a/setup.py +++ b/setup.py @@ -97,7 +97,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