Skip to content

Commit ee81fed

Browse files
Remove aberrant double spaces in generated text
Annoying double space in generated (verbose?) text. For example: ``` [debug] Ignoring package Cabal due to wanting version 1.22.5.0 instead of 1.22.4.0 ``` Note the double space in "to wanting".
1 parent 61ae8db commit ee81fed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Stack/Build/Installed.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ processLoadResult mdb _ (reason, lh) = do
191191
, packageNameText (fst (lhPair lh))
192192
] ++
193193
maybe [] (\db -> [", from ", T.pack (show db), ","]) mdb ++
194-
[ " due to "
194+
[ " due to"
195195
, case reason of
196196
Allowed -> " the impossible?!?!"
197197
NeedsProfiling -> " it needing profiling."

0 commit comments

Comments
 (0)