SCons: Fix the polarity on the --ignore-style check.

This commit is contained in:
Gabe Black 2011-03-04 00:11:02 -08:00
parent 96e0f3bda5
commit 674b941282

View file

@ -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: