Finish the documentation of normalize_path

Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
Gilles Peskine 2020-05-28 18:19:20 +02:00
parent 30e0bb4a24
commit eca95db763

View file

@ -46,8 +46,10 @@ class FileIssueTracker:
@staticmethod
def normalize_path(filepath):
"""Normalize ``filepath`` """
"""Normalize ``filepath`` with / as the directory separator."""
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
if os.path.altsep is not None:
seps += os.path.altsep