summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEevee (Alex Munroe) <eevee.git@veekun.com>2013-08-12 16:11:33 -0700
committerEevee (Alex Munroe) <eevee.git@veekun.com>2013-08-12 16:11:33 -0700
commitb94d5fa4582b6bd727f6674f0116e3373c9ed911 (patch)
tree8e148f94d52f31991d4fcc813543a5c2ee9af358
parenta96f77df6aa9e1fb4d666a95dfd45e155482ea4e (diff)
downloadpyscss-b94d5fa4582b6bd727f6674f0116e3373c9ed911.tar.gz
--sass should be store_true, not false. #185
-rw-r--r--scss/tool.py2
1 files changed, 1 insertions, 1 deletions
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")