summaryrefslogtreecommitdiff
path: root/dhall
diff options
context:
space:
mode:
Diffstat (limited to 'dhall')
-rw-r--r--dhall/src/imports.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/dhall/src/imports.rs b/dhall/src/imports.rs
index d6da4d7..ea3ef01 100644
--- a/dhall/src/imports.rs
+++ b/dhall/src/imports.rs
@@ -35,9 +35,9 @@ fn resolve_import(
Local(prefix, path) => {
let path = match prefix {
Parent => cwd.parent().unwrap().join(path),
- _ => unimplemented!(),
+ _ => unimplemented!("{:?}", import),
};
- load_dhall_file(&path, false)
+ load_dhall_file(&path, true)
}
}
}