Skip to content

Commit adc7028

Browse files
Use correct delimiter in docs table header
1 parent f937b17 commit adc7028

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# python-exiv2 - Python interface to exiv2
22
# http://github.com/jim-easterbrook/python-exiv2
3-
# Copyright (C) 2024 Jim Easterbrook [email protected]
3+
# Copyright (C) 2024-25 Jim Easterbrook [email protected]
44
#
55
# This program is free software: you can redistribute it and/or modify
66
# it under the terms of the GNU General Public License as published by
@@ -198,7 +198,7 @@ def process_docstring(app, what, name, obj, options, lines):
198198
header = ['"{}"'.format(x.strip('*')) for x in parts[1:-1]]
199199
lines[idx:idx+1] = [
200200
parts[0] + '.. csv-table::', parts[0] + ' :delim: |',
201-
parts[0] + ' :header: ' + ', '.join(header), '']
201+
parts[0] + ' :header: ' + '|'.join(header), '']
202202
idx += 3
203203
while lines[idx+1]:
204204
idx += 1

0 commit comments

Comments
 (0)