aboutsummaryrefslogtreecommitdiff
path: root/source/conda.d
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2019-05-30 16:05:27 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2019-05-30 16:05:27 -0400
commit7a498ab7a8e50db818f0636dd0759f17723a3d4d (patch)
tree4a40b4c781ea3f2597e6377653a12b897ed1b4f9 /source/conda.d
parent10a416e64572b50ac76d7b40565aff064bd77860 (diff)
downloaddm-7a498ab7a8e50db818f0636dd0759f17723a3d4d.tar.gz
Remove whitespace around equals
Diffstat (limited to 'source/conda.d')
-rw-r--r--source/conda.d3
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;
}
-
}