Skip to content

Commit 39e137a

Browse files
committed
dbg11
1 parent 98d0434 commit 39e137a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

credsweeper/deep_scanner/deep_scanner.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import datetime
22
import logging
3+
from pathlib import Path
34
from typing import List, Optional, Any, Tuple, Union
45

56
from credsweeper.common.constants import RECURSIVE_SCAN_LIMITATION
@@ -136,7 +137,7 @@ def scan(self,
136137
data_provider = DataContentProvider(data=data,
137138
file_path=content_provider.file_path,
138139
file_type=content_provider.file_type,
139-
info=str(content_provider.file_path))
140+
info=Path(content_provider.file_path).as_posix())
140141
# iterate for all possibly scanner methods WITHOUT ByteContentProvider for TextContentProvider
141142
scanner_classes = self.get_deep_scanners(data, content_provider.file_type)
142143
for scan_class in scanner_classes:

0 commit comments

Comments
 (0)