help: Don't show empty Summary or Description sections

Signed-off-by: Shawn O. Pearce <sop@google.com>
(cherry picked from commit 60e679209a)
This commit is contained in:
Shawn O. Pearce 2009-06-03 17:43:16 -07:00
parent 0d2b61f11d
commit c7c57e34db

View File

@ -94,6 +94,8 @@ See 'repo help --all' for a complete list of recognized commands.
body = getattr(cmd, bodyAttr) body = getattr(cmd, bodyAttr)
except AttributeError: except AttributeError:
return return
if body == '' or body is None:
return
self.nl() self.nl()