Skip to content

Commit 2776d7b

Browse files
authored
minor help text updates
1 parent bd99eec commit 2776d7b

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

q2cli/builtin/info.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ def _echo_plugins():
3232
for name, plugin in sorted(plugins.items()):
3333
click.echo('%s: %s' % (name, plugin['version']))
3434
else:
35-
click.secho('No plugins are currently installed.\nYou can browse '
36-
'the official QIIME 2 plugins at https://qiime2.org')
35+
click.secho('No plugins are currently installed.\n'
36+
'Find plugins at https://library.qiime2.org.')
3737

3838

3939
@click.command(help='Display information about current deployment.',
@@ -81,12 +81,13 @@ def info(config_level):
8181
click.secho(f'\n{config}')
8282

8383
click.secho('\nGetting help', fg='green')
84-
click.secho('To get help with QIIME 2, visit https://qiime2.org')
84+
click.secho('To find help and learning resources, visit '
85+
'https://qiime2.org.')
8586

8687
if config_level:
8788
click.secho('To get help with configuring and/or understanding '
8889
'QIIME 2 parallelization, visit '
8990
'https://use.qiime2.org/en/latest/references/'
90-
'parallel-configuration.html')
91+
'parallel-configuration.html.')
9192

9293
click.secho('\n')

0 commit comments

Comments
 (0)