Skip to content

Commit 892876a

Browse files
committed
fixup! fixup! Fix test_embed
Signed-off-by: Filipe Laíns <[email protected]>
1 parent 77aeff4 commit 892876a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/getpath.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -760,7 +760,7 @@ def search_up(prefix, *landmarks, test=isfile):
760760
# QUIRK: Non-Windows replaces prefix/exec_prefix with defaults when running
761761
# in build directory. This happens after pythonpath calculation.
762762
# Virtual environments using the build directory Python still keep their prefix.
763-
if not venv_prefix and os_name != 'nt' and build_prefix:
763+
if os_name != 'nt' and build_prefix:
764764
if not venv_prefix:
765765
prefix = config.get('prefix') or PREFIX
766766
exec_prefix = config.get('exec_prefix') or EXEC_PREFIX or prefix

0 commit comments

Comments
 (0)