Skip to content

Commit

Permalink
Merge branch 'dev' into twofactorfix
Browse files Browse the repository at this point in the history
  • Loading branch information
i-oden authored Aug 17, 2022
2 parents e6ed0af + 459c8d8 commit 5de3644
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
coverage:
range: 60..90
status:
project:
default:
Expand Down
2 changes: 1 addition & 1 deletion dds_cli/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
highlight=False,
)

if sys.argv[1] != "motd":
if len(sys.argv) == 1 or (len(sys.argv) > 1 and sys.argv[1] != "motd"):
motds = dds_cli.motd_manager.MotdManager.list_all_active_motds(table=False)
if motds:
dds_cli.utils.stderr_console.print(f"[bold]Important information:[/bold]")
Expand Down
2 changes: 1 addition & 1 deletion dds_cli/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.0.73"
__version__ = "1.0.74"

0 comments on commit 5de3644

Please sign in to comment.