[Buildroot] [PATCH] scanpypi: fix help text handling

yegorslists at googlemail.com yegorslists at googlemail.com
Mon Jun 20 13:12:53 UTC 2016


From: Yegor Yefremov <yegorslists at googlemail.com>

Make sure a help text is terminated with a full stop.

Signed-off-by: Yegor Yefremov <yegorslists at googlemail.com>
---
 support/scripts/scanpypi | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/support/scripts/scanpypi b/support/scripts/scanpypi
index 230791f..da578f4 100755
--- a/support/scripts/scanpypi
+++ b/support/scripts/scanpypi
@@ -527,6 +527,11 @@ class BuildrootPackage():
         help_lines = textwrap.wrap(self.metadata['info']['summary'],
                                    initial_indent='\t  ',
                                    subsequent_indent='\t  ')
+
+        # make sure a help text is terminated with a full stop
+        if help_lines[-1][-1] != '.':
+            help_lines[-1] += '.'
+
         # \t + two spaces is 3 char long
         help_lines.append('')
         help_lines.append('\t  ' + self.metadata['info']['home_page'])
-- 
2.1.4



More information about the buildroot mailing list