Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Fixes #99. Do not use hardcoded file separator. #108

Merged
merged 7 commits into from
May 30, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/python/tools/fix_line_widths.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from os.path import isfile
from os.path import join as pjoin

dir_path = r'src\python\docs\docstrings'
dir_path = pjoin(src, python, docs, docstrings)
files = []
for root, directories, filenames in os.walk(dir_path):
for file in filenames:
Expand Down