Skip to content

Commit 65b7ec9

Browse files
committed
Fix rtd
1 parent 35638a3 commit 65b7ec9

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

docs/source/reference/command_line.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ Below is a list with all available subcommands.
453453
--broker-host HOSTNAME Hostname for the message broker. [default: 127.0.0.1]
454454
--broker-port INTEGER Port for the message broker. [default: 5672]
455455
--broker-virtual-host TEXT Name of the virtual host for the message broker without
456-
leading forward slash.
456+
leading forward slash. [default: ""]
457457
--repository DIRECTORY Absolute path to the file repository.
458458
--test-profile Designate the profile to be used for running the test
459459
suite only.

src/aiida/cmdline/params/options/main.py

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -902,26 +902,18 @@ def set_log_level(ctx, _param, value):
902902
help='Only select nodes whose `mtime` is after the last dump time.',
903903
)
904904

905-
FILTER_BY_LAST_DUMP_TIME = OverridableOption(
906-
'--filter-by-last-dump-time/--no-filter-by-last-dump-time',
907-
is_flag=True,
908-
default=True,
909-
show_default=True,
910-
help='Only select nodes whose `mtime` is after the last dump time.',
911-
)
912-
913905
START_DATE = OverridableOption(
914906
'--start-date',
915907
is_flag=False,
916908
default=None,
917909
show_default=True,
918-
help='Start date for node mtime range selection for profile dumping.',
910+
help='Start date for node mtime range selection for node collection dumping.',
919911
)
920912

921913
END_DATE = OverridableOption(
922914
'--end-date',
923915
is_flag=False,
924916
default=None,
925917
show_default=True,
926-
help='End date for node mtime range selection for profile dumping.',
918+
help='End date for node mtime range selection for node collection dumping.',
927919
)

0 commit comments

Comments
 (0)