Finish the documentation of normalize_path
Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
parent
30e0bb4a24
commit
eca95db763
1 changed files with 3 additions and 1 deletions
|
@ -46,8 +46,10 @@ class FileIssueTracker:
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def normalize_path(filepath):
|
def normalize_path(filepath):
|
||||||
"""Normalize ``filepath`` """
|
"""Normalize ``filepath`` with / as the directory separator."""
|
||||||
filepath = os.path.normpath(filepath)
|
filepath = os.path.normpath(filepath)
|
||||||
|
# On Windows, we may have backslashes to separate directories.
|
||||||
|
# We need slashes to match exemption lists.
|
||||||
seps = os.path.sep
|
seps = os.path.sep
|
||||||
if os.path.altsep is not None:
|
if os.path.altsep is not None:
|
||||||
seps += os.path.altsep
|
seps += os.path.altsep
|
||||||
|
|
Loading…
Reference in a new issue