Skip to content

Commit

Permalink
fix: typos noted as updating documentation
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Horton <phorton@sonatype.com>
  • Loading branch information
madpah committed Sep 16, 2021
1 parent 7ed4f4e commit 0d65116
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions jake/app.py
Expand Up @@ -72,7 +72,7 @@ def _load_subcommands(self):
}

def _build_arg_parser(self):
self._arg_parser = argparse.ArgumentParser(description='CycloneDX SBOM Generator')
self._arg_parser = argparse.ArgumentParser(description='Put your Python dependencies in a chokehold')

# Add global options
self._arg_parser.add_argument('-v', '--version', help='show which version of jake you are running',
Expand All @@ -98,7 +98,7 @@ def _print_jake_header():
cprint(figlet_format('Jake', font='isometric4'), 'green', attrs=[])
cprint(figlet_format('..the snake..', font='invita'), 'blue', attrs=['dark'])
print("Jake Version: {}".format(JakeCmd._get_jake_version()))
print('Put your Python dependencies in a chokehold.')
print('Put your Python dependencies in a chokehold')
print('')

@staticmethod
Expand Down
2 changes: 1 addition & 1 deletion jake/command/iq.py
Expand Up @@ -212,7 +212,7 @@ def handle_args(self):

print('')
print('Your Sonatype Nexus IQ Lifecycle Report is available here:')
print(' HTML: {}/}'.format(self._arguments.iq_server_url, iq_response['reportHtmlUrl']))
print(' HTML: {}/{}'.format(self._arguments.iq_server_url, iq_response['reportHtmlUrl']))
print(' PDF: {}/{}'.format(self._arguments.iq_server_url, iq_response['reportPdfUrl']))
print('')

Expand Down
2 changes: 1 addition & 1 deletion jake/command/oss.py
Expand Up @@ -78,7 +78,7 @@ def handle_args(self):
print('CycloneDX has been written to {}'.format(output_filename))

def setup_argument_parser(self, subparsers: argparse._SubParsersAction):
parser = subparsers.add_parser('oss', help='perform a scan backed by OSS Index')
parser = subparsers.add_parser('ddt', help='perform a scan backed by OSS Index')

parser.add_argument('-o', '--output-file', help='Specify a file to output the SBOM to. If not specified the '
'report will be output to the console. STDOUT is not supported.',
Expand Down

0 comments on commit 0d65116

Please sign in to comment.