From 674b94128284796c90f12e16d5029ce693464deb Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Fri, 4 Mar 2011 00:11:02 -0800 Subject: SCons: Fix the polarity on the --ignore-style check. --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 89036c31f..8f049e749 100755 --- a/SConstruct +++ b/SConstruct @@ -239,7 +239,7 @@ if hgdir.exists(): # 2) Ensure that the style hook is in place. try: ui = None - if GetOption('ignore_style'): + if not GetOption('ignore_style'): from mercurial import ui ui = ui.ui() except ImportError: -- cgit v1.2.3