about summary refs log tree commit diff
path: root/tvix/eval/src/value/attrs.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/eval/src/value/attrs.rs')
-rw-r--r--tvix/eval/src/value/attrs.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/eval/src/value/attrs.rs b/tvix/eval/src/value/attrs.rs
index ca92636046..f614128550 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()),
             }
         }