summaryrefslogtreecommitdiff
path: root/man/make_man_page.py
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-11-30 12:26:13 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2014-11-30 12:26:13 -0800
commit4c959280a1617bad3e2aa90ab3682758816dbedf (patch)
tree72b221d76af2711ee9d029320f084840a975d7d4 /man/make_man_page.py
parent398444369a91510a0766d2835c089291dc05d187 (diff)
Man page: proper date format.
Diffstat (limited to 'man/make_man_page.py')
-rw-r--r--man/make_man_page.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/man/make_man_page.py b/man/make_man_page.py
index 61b355d..4dadd51 100644
--- a/man/make_man_page.py
+++ b/man/make_man_page.py
@@ -87,6 +87,6 @@ with open(sourcefile, 'r') as cmarkh:
chunk = []
mdlines.append('\n')
-sys.stdout.write('.Dd ' + date.today().isoformat() + '\n')
+sys.stdout.write('.Dd ' + date.today().strftime('%B %d, %Y') + '\n')
sys.stdout.write('.Dt ' + os.path.basename(sourcefile).replace('.h','') + ' 3\n')
sys.stdout.write(''.join(mdlines))