1
0
Fork 0
mirror of https://git.freebsd.org/ports.git synced 2025-06-19 19:50:31 -04:00
ports/devel/py-awscli/files/patch-awscli_help.py
Juraj Lutter 3d8e46a27f devel/py-awscli: Update to 1.27.9
- Update to 1.27.9
- Rename to comply with Python naming policy and flavorize
- Assume MAINTAINER
2022-11-15 21:17:12 +01:00

11 lines
516 B
Python

--- awscli/help.py.orig 2022-11-14 19:07:18 UTC
+++ awscli/help.py
@@ -109,7 +109,7 @@ class PosixHelpRenderer(PagingHelpRenderer):
if self._exists_on_path('groff'):
cmdline = ['groff', '-m', 'man', '-T', 'ascii']
elif self._exists_on_path('mandoc'):
- cmdline = ['mandoc', '-T', 'ascii']
+ cmdline = ['mandoc', '-man', '-T', 'ascii']
else:
raise ExecutableNotFoundError('groff or mandoc')
LOG.debug("Running command: %s", cmdline)