diff options
Diffstat (limited to 'tvix/eval/src/value/attrs.rs')
-rw-r--r-- | tvix/eval/src/value/attrs.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/eval/src/value/attrs.rs b/tvix/eval/src/value/attrs.rs index ca92636046ba..f614128550f3 100644 --- a/tvix/eval/src/value/attrs.rs +++ b/tvix/eval/src/value/attrs.rs @@ -253,7 +253,7 @@ impl NixAttrs { continue; } - other => panic!("unexpected attribute key type: {}", other.type_of()), + other => panic!("unexpected attribute key: {} :: {}", other, other.type_of()), } } |