about summary refs log tree commit diff
path: root/users/Profpatsch/netencode/netencode-mustache.rs
diff options
context:
space:
mode:
Diffstat (limited to 'users/Profpatsch/netencode/netencode-mustache.rs')
-rw-r--r--users/Profpatsch/netencode/netencode-mustache.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/users/Profpatsch/netencode/netencode-mustache.rs b/users/Profpatsch/netencode/netencode-mustache.rs
index 5c7242ed08..ee7bafed22 100644
--- a/users/Profpatsch/netencode/netencode-mustache.rs
+++ b/users/Profpatsch/netencode/netencode-mustache.rs
@@ -37,7 +37,7 @@ fn netencode_to_mustache_data_dwim(t: T) -> Data {
 
 pub fn from_stdin() -> () {
     let data = netencode_to_mustache_data_dwim(
-        arglib_netencode::arglib_netencode(Some(std::ffi::OsStr::new("TEMPLATE_DATA"))).unwrap()
+        arglib_netencode::arglib_netencode("netencode-mustache", Some(std::ffi::OsStr::new("TEMPLATE_DATA")))
     );
     let mut stdin = String::new();
     std::io::stdin().read_to_string(&mut stdin).unwrap();