diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-05-30 16:05:27 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2019-05-30 16:05:27 -0400 |
commit | 7a498ab7a8e50db818f0636dd0759f17723a3d4d (patch) | |
tree | 4a40b4c781ea3f2597e6377653a12b897ed1b4f9 /source | |
parent | 10a416e64572b50ac76d7b40565aff064bd77860 (diff) | |
download | dm-7a498ab7a8e50db818f0636dd0759f17723a3d4d.tar.gz |
Remove whitespace around equals
Diffstat (limited to 'source')
-rw-r--r-- | source/conda.d | 3 |
1 files changed, 1 insertions, 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; } - } |