Skip to content

Commit

Permalink
fixed some missing cherrypicked changes
Browse files Browse the repository at this point in the history
  • Loading branch information
nerdvegas committed Apr 7, 2022
1 parent f90f3cc commit cee67d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rez/resolved_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -1951,7 +1951,7 @@ def _execute(self, executor):
"""Bind various info to the execution context
"""
def normalized(path):
return executor.interpreter.normalize_path(path)
return executor.normalize_path(path)

resolved_pkgs = self.resolved_packages or []
ephemerals = self.resolved_ephemerals or []
Expand All @@ -1960,7 +1960,7 @@ def normalized(path):
implicit_str = ' '.join(str(x) for x in self.implicit_packages)
resolve_str = ' '.join(x.qualified_package_name for x in resolved_pkgs)
req_timestamp_str = str(self.requested_timestamp or 0)
package_paths_str = os.pathsep.join(
package_paths_str = executor.interpreter.pathsep.join(
normalized(x) for x in self.package_paths
)

Expand Down

0 comments on commit cee67d7

Please sign in to comment.