]> gitweb.michael.orlitzky.com - mailbox-count.git/commitdiff
src/Configuration.hs: add space around ++
authorMichael Orlitzky <michael@orlitzky.com>
Thu, 25 Apr 2024 21:44:14 +0000 (17:44 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Thu, 25 Apr 2024 21:44:14 +0000 (17:44 -0400)
src/Configuration.hs

index 7e15a74a15926e745ab7da640d6a3745220fdb93..9b7be965e78e1728243d02a8f05af5d7bf181ad9 100644 (file)
@@ -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 " ++