Skip to content

Commit d170c86

Browse files
add parse key venv in obj
1 parent 3893d65 commit d170c86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bif/parse_bif_obj.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ impl<'a> Bif<'a> {
145145
fn parse_obj_values(&mut self, value: &mut Value, is_recursive_call: bool) {
146146
if let Value::Object(map) = value {
147147
for (key, val) in map.iter_mut() {
148-
if key == "file" || key == "template" {
148+
if key == "file" || key == "template" || key == "venv" {
149149
if let Value::String(s) = val {
150150
if s.contains(BIF_OPEN) {
151151
*val = Value::String(new_child_parse!(self, s, false));

0 commit comments

Comments
 (0)