We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e157656 commit 7a8060cCopy full SHA for 7a8060c
1 file changed
src/manage/commands.py
@@ -516,7 +516,7 @@ def show_welcome(self, copyright=True):
516
except OSError:
517
LOGGER.debug("Failed to update %s", last_update_file, exc_info=True)
518
return
519
- LOGGER.print(WELCOME)
+ LOGGER.info(WELCOME)
520
521
def dump_arguments(self):
522
try:
@@ -716,7 +716,10 @@ class ListCommand(BaseCommand):
716
717
def execute(self):
718
from .list_command import execute
719
- self.show_welcome()
+ # gh-203: Don't show welcome message for "-1" to minimise the risk of it
720
+ # mixing with parsed output.
721
+ if not self.one:
722
+ self.show_welcome()
723
if self.default_source:
724
LOGGER.debug("Loading 'install' command to get source")
725
inst_cmd = COMMANDS["install"](["install"], self.root)
0 commit comments