Skip to content

Commit

Permalink
Problem with Path (#194)
Browse files Browse the repository at this point in the history
Fix Path in consult method for Windows
  • Loading branch information
lmatera19 authored Dec 12, 2024
1 parent cc850b2 commit 0e9a952
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions CONTRIBUTORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,4 @@ David Cox
Maximilian Peltzer
Adi Harif
Oisín Mac Fhearaí
Lorenzo Matera
6 changes: 5 additions & 1 deletion src/pyswip/prolog.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,11 @@ def consult(
:param relative_to: The path where the consulted file is relative to
"""
path = resolve_path(path, relative_to)
next(cls.query(str(path).join(["consult('", "')"]), catcherrors=catcherrors))
next(
cls.query(
str(path.as_posix()).join(["consult('", "')"]), catcherrors=catcherrors
)
)

@classmethod
def query(
Expand Down

0 comments on commit 0e9a952

Please sign in to comment.