Skip to content

Commit 7ac8c4b

Browse files
authored
Updated helptext
1 parent 5ab7878 commit 7ac8c4b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

db_diff/cli.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@
3535
"output_file",
3636
type=click.Path(file_okay=True, dir_okay=False, writable=True, resolve_path=True),
3737
default=None,
38-
help="File to write JSON output to (only used with --output=jsonfile) [default: YYYY-MM-DD_HH-MM-SS_diffs.json].",
38+
help="File to write JSON output to (only used with --output=jsonfile). [default: YYYY-MM-DD_HH-MM-SS_diffs.json]",
3939
)
4040
@click.option(
4141
"--outfilepath",
4242
"output_path",
4343
type=click.Path(file_okay=False, dir_okay=True, writable=True, resolve_path=True),
4444
default=None,
45-
help="Directory to save the output file (only used with --output=jsonfile) [default: current directory].",
45+
help="Directory to save the output file (only used with --output=jsonfile). [default: current directory]",
4646
)
4747
@click.option(
4848
"--showunchanged",
@@ -73,13 +73,13 @@
7373
"--fields",
7474
type=str,
7575
default=None,
76-
help="Comma-separated list of fields to compare (all others ignored). Mutually exclusive with --ignorefields.",
76+
help="Comma-separated list of fields to compare (all others ignored). Mutually exclusive with --ignorefields. (example: --fields=Id,Name,Age__c,Email__c).",
7777
)
7878
@click.option(
7979
"--ignorefields",
8080
type=str,
8181
default=None,
82-
help="Comma-separated list of fields to ignore during comparison. Mutually exclusive with --fields.",
82+
help="Comma-separated list of fields to ignore during comparison. Mutually exclusive with --fields. (example: --ignorefields=LastModifiedDate,SystemModstamp,Days_Since_Last_Contact__c).",
8383
)
8484
@click.version_option()
8585
def cli(

0 commit comments

Comments
 (0)