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

Commit

Permalink
Fixes #99. Do not use hardcoded file separator. (#108)
Browse files Browse the repository at this point in the history
Fixes #99. Do not use hard coded file separator.
  • Loading branch information
pieths authored May 30, 2019
1 parent c35536d commit 8da35e1
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 8da35e1

Please sign in to comment.