summaryrefslogtreecommitdiff
path: root/sqlparse/formatter.py
diff options
context:
space:
mode:
Diffstat (limited to 'sqlparse/formatter.py')
-rw-r--r--sqlparse/formatter.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/sqlparse/formatter.py b/sqlparse/formatter.py
index b36fe56..0a1b055 100644
--- a/sqlparse/formatter.py
+++ b/sqlparse/formatter.py
@@ -74,6 +74,7 @@ def validate_options(options):
if indent_after_first not in [True, False]:
raise SQLParseError('Invalid value for indent_after_first: '
'{0!r}'.format(indent_after_first))
+ options['indent_after_first'] = indent_after_first
indent_tabs = options.get('indent_tabs', False)
if indent_tabs not in [True, False]: