aboutsummaryrefslogtreecommitdiff
path: root/wa/commands/show.py
diff options
context:
space:
mode:
Diffstat (limited to 'wa/commands/show.py')
-rw-r--r--wa/commands/show.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wa/commands/show.py b/wa/commands/show.py
index ca7e534f..b074568b 100644
--- a/wa/commands/show.py
+++ b/wa/commands/show.py
@@ -69,7 +69,7 @@ class ShowCommand(Command):
# Correctly format the title and page number of the man page
title, body = output.split('\n', 1)
- title = '.TH {}{} 1'.format(kind, plugin_name)
+ title = '.TH {}{} 7'.format(kind, plugin_name)
output = '\n'.join([title, body])
call('echo "{}" | man -l -'.format(escape_double_quotes(output)), shell=True)