From b94d5fa4582b6bd727f6674f0116e3373c9ed911 Mon Sep 17 00:00:00 2001 From: "Eevee (Alex Munroe)" Date: Mon, 12 Aug 2013 16:11:33 -0700 Subject: --sass should be store_true, not false. #185 --- scss/tool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/tool.py b/scss/tool.py index c11e6c3..d9486af 100644 --- a/scss/tool.py +++ b/scss/tool.py @@ -67,7 +67,7 @@ def main(): help="Cache root path (Cache files will be created here)") parser.add_option_group(paths_group) - parser.add_option("--sass", action="store_false", + parser.add_option("--sass", action="store_true", dest="is_sass", default=None, help="Sass mode") -- cgit v1.2.1