hgext/journal.py
changeset 49860 d5116e4dc744
parent 49306 2e726c934fcd
child 50783 f642063c8147
--- a/hgext/journal.py	Fri Jan 06 12:20:09 2023 -0500
+++ b/hgext/journal.py	Thu Jan 05 17:45:25 2023 -0500
@@ -567,8 +567,12 @@
         )
         fm.write(b'newnodes', b'%s', formatnodes(entry.newhashes))
         fm.condwrite(ui.verbose, b'user', b' %-8s', entry.user)
+
+        # ``name`` is bytes, or None only if 'all' was an option.
         fm.condwrite(
+            # pytype: disable=attribute-error
             opts.get(b'all') or name.startswith(b're:'),
+            # pytype: enable=attribute-error
             b'name',
             b'  %-8s',
             entry.name,