From 786586dbdea8528f260eca8b5d0dbbfbb7cb4988 Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Fri, 17 Aug 2018 10:28:26 -0500 Subject: [PATCH] BUGFIX: The '.' should not be in there. --- src/convert/env.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/convert/env.rs b/src/convert/env.rs index 4f5c5db..216689b 100644 --- a/src/convert/env.rs +++ b/src/convert/env.rs @@ -89,6 +89,6 @@ impl Converter for EnvConverter { } fn file_ext(&self) -> String { - String::from(".env") + String::from("env") } }