8000 Change a double to a single quote. · pyodide/sphinx-js@05938fb · GitHub
[go: up one dir, main page]

Skip to content

Commit 05938fb

Browse files
committed
Change a double to a single quote.
1 parent 1f242cf commit 05938fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sphinx_js/jsdoc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def doclet_full_path(d, base_dir, longname_field='longname'):
118118
"""
119119
meta = d['meta']
120120
rel = relpath(meta['path'], base_dir)
121-
rel = "/".join(rel.split(sep))
121+
rel = '/'.join(rel.split(sep))
122122
if not rel.startswith(('../', './')) and rel not in ('..', '.'):
123123
# It just starts right out with the name of a folder in the cwd.
124124
rooted_rel = './%s' % rel

0 commit comments

Comments
 (0)
0