From 7a498ab7a8e50db818f0636dd0759f17723a3d4d Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Thu, 30 May 2019 16:05:27 -0400 Subject: Remove whitespace around equals --- source/conda.d | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/conda.d b/source/conda.d index 7b30c56..2f4995a 100644 --- a/source/conda.d +++ b/source/conda.d @@ -34,7 +34,7 @@ class Conda { void dump_env_shell() { foreach (pair; this.env.byKeyValue()) { - writeln(pair.key ~ " = " ~ pair.value); + writeln(pair.key ~ "=" ~ pair.value); } } @@ -284,5 +284,4 @@ class Conda { } return proc.output; } - } -- cgit