Skip to content

Commit 0e9a952

Browse files
authored
Problem with Path (#194)
Fix Path in consult method for Windows
1 parent cc850b2 commit 0e9a952

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CONTRIBUTORS.txt

+1
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,4 @@ David Cox
3030
Maximilian Peltzer
3131
Adi Harif
3232
Oisín Mac Fhearaí
33+
Lorenzo Matera

src/pyswip/prolog.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,11 @@ def consult(
390390
:param relative_to: The path where the consulted file is relative to
391391
"""
392392
path = resolve_path(path, relative_to)
393-
next(cls.query(str(path).join(["consult('", "')"]), catcherrors=catcherrors))
393+
next(
394+
cls.query(
395+
str(path.as_posix()).join(["consult('", "')"]), catcherrors=catcherrors
396+
)
397+
)
394398

395399
@classmethod
396400
def query(

0 commit comments

Comments
 (0)