From: Michael Orlitzky Date: Thu, 25 Apr 2024 21:44:14 +0000 (-0400) Subject: src/Configuration.hs: add space around ++ X-Git-Tag: 0.0.7~6 X-Git-Url: https://gitweb.michael.orlitzky.com/?p=mailbox-count.git;a=commitdiff_plain;h=ffbd11deecf29fb7464fde3c3f20ef984f3e5916 src/Configuration.hs: add space around ++ --- diff --git a/src/Configuration.hs b/src/Configuration.hs index 7e15a74..9b7be96 100644 --- a/src/Configuration.hs +++ b/src/Configuration.hs @@ -45,7 +45,7 @@ instance Default Configuration where where def_summary_query = "SELECT domain,COUNT(username) " ++ "FROM mailbox " ++ - "GROUP BY domain "++ + "GROUP BY domain " ++ "ORDER BY domain;" def_detail_query = "SELECT domain,username " ++