Skip to content

Commit

Permalink
EXCLUDE => EXCEPT
Browse files Browse the repository at this point in the history
  • Loading branch information
acurtis-evi committed Mar 7, 2023
1 parent 9273f86 commit ec540e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/dbt/graph/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def parse_union(
flags = get_flags()
# ['a', 'b', 'c,d'] -> union('a', 'b', intersection('c', 'd'))
for raw_spec in raw_specs:
if in_exclude == False and raw_spec == 'EXCLUDE':
if in_exclude == False and raw_spec == 'EXCEPT':
in_exclude = True
if len(union_components) == 0:
for include in DEFAULT_INCLUDES:
Expand Down

0 comments on commit ec540e0

Please sign in to comment.