Skip to content

Commit

Permalink
fix: escaping of quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
nichmor committed Aug 1, 2024
1 parent bff5681 commit c4532f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rattler_build_conda_compat/jinja/jinja.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
from rattler_build_conda_compat.jinja.filters import _bool, _split, _version_to_build_string
from rattler_build_conda_compat.jinja.objects import (
_stub_compatible_pin,
_Stub_Env,
_stub_is_linux,
_stub_is_unix,
_stub_is_win,
_stub_match,
_stub_subpackage_pin,
_StubEnv,
)
from rattler_build_conda_compat.jinja.utils import _MissingUndefined
from rattler_build_conda_compat.loader import load_yaml
Expand All @@ -37,7 +37,7 @@ def jinja_env() -> jinja2.Environment:
undefined=_MissingUndefined,
)

env_obj = _Stub_Env()
env_obj = _StubEnv()

# inject rattler-build recipe functions in jinja environment
env.globals.update(
Expand Down

0 comments on commit c4532f9

Please sign in to comment.