Skip to content

Commit eabaac1

Browse files
committed
Fix regression introduced by new indent_after_first option.
1 parent 5131c4c commit eabaac1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

sqlparse/formatter.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ def validate_options(options):
7474
if indent_after_first not in [True, False]:
7575
raise SQLParseError('Invalid value for indent_after_first: '
7676
'{0!r}'.format(indent_after_first))
77+
options['indent_after_first'] = indent_after_first
7778

7879
indent_tabs = options.get('indent_tabs', False)
7980
if indent_tabs not in [True, False]:

0 commit comments

Comments
 (0)