public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Arthur Zamarin" <arthurzam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/pkgcore/snakeoil:master commit in: src/snakeoil/dist/
Date: Fri,  9 Dec 2022 13:30:21 +0000 (UTC)	[thread overview]
Message-ID: <1670592551.25cca84e6c6959164257fb2ba3fedb95815b45e0.arthurzam@gentoo> (raw)

commit:     25cca84e6c6959164257fb2ba3fedb95815b45e0
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Dec  9 13:29:11 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Dec  9 13:29:11 2022 +0000
URL:        https://gitweb.gentoo.org/proj/pkgcore/snakeoil.git/commit/?id=25cca84e

generate_man_rsts: improve sub sectioning for sub commands

Improve tree structure for sub commands.

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 src/snakeoil/dist/generate_man_rsts.py | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/snakeoil/dist/generate_man_rsts.py b/src/snakeoil/dist/generate_man_rsts.py
index 6ba095f4..6c482211 100644
--- a/src/snakeoil/dist/generate_man_rsts.py
+++ b/src/snakeoil/dist/generate_man_rsts.py
@@ -80,8 +80,8 @@ class ManConverter:
         cur_time = max([cur_time, script_time])
         try:
             trg_time = int(os.stat(out_path).st_mtime)
-        except EnvironmentError as e:
-            if e.errno != errno.ENOENT:
+        except EnvironmentError as exc:
+            if exc.errno != errno.ENOENT:
                 raise
             trg_time = None
 
@@ -103,7 +103,7 @@ class ManConverter:
         self.mtime = mtime
         self.replace_cmd = replace_cmd
 
-        header_chars = headers if headers else ('=', '-', '~', '#', '*', '^')
+        header_chars = headers or ('=', '-', '~', '#', '*', '^')
         self.header_char = header_chars[len(name.split(' ')) - 1]
 
     def run(self):
@@ -208,8 +208,8 @@ class ManConverter:
         path = os.path.join(self.base_path, cmd_path)
         try:
             os.makedirs(path)
-        except OSError as e:
-            if e.errno != errno.EEXIST:
+        except OSError as exc:
+            if exc.errno != errno.EEXIST:
                 raise
 
         # strip the main command from the outputted name
@@ -223,7 +223,7 @@ class ManConverter:
         desc = getattr(parser, '_description', parser.description)
         desc = ' - ' + desc if desc else ''
         rst = _rst_header(self.header_char, f'{name}{desc}',
-                          leading=main_command, capitalize=False)
+                          leading=True, capitalize=False)
 
         cmd = cmd_parts[-1]
         for filename in ('synopsis', 'description', 'options', 'subcommands'):


             reply	other threads:[~2022-12-09 13:30 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-09 13:30 Arthur Zamarin [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-01-26 19:17 [gentoo-commits] proj/pkgcore/snakeoil:master commit in: src/snakeoil/dist/ Arthur Zamarin
2023-03-24 11:08 Arthur Zamarin
2022-12-09 13:30 Arthur Zamarin
2022-12-09 11:51 Arthur Zamarin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1670592551.25cca84e6c6959164257fb2ba3fedb95815b45e0.arthurzam@gentoo \
    --to=arthurzam@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox