--exclude_schema -> --exclude-schema

This commit is contained in:
Misha Kaletsky 2024-02-09 17:05:27 -05:00 committed by GitHub
parent da6671acae
commit 71631d54f4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -38,6 +38,12 @@ def parse_args(args):
"--exclude_schema",
dest="exclude_schema",
default=None,
help="[DEPRECATED: Use --exclude-schema] Restrict output to statements for all schemas except the specified schema",
)
parser.add_argument(
"--exclude-schema",
dest="exclude_schema",
default=None,
help="Restrict output to statements for all schemas except the specified schema",
)
parser.add_argument(