From 4901236705c49f71fe023a93ef427a602ed93030 Mon Sep 17 00:00:00 2001
From: Simon <fortier.simon@hotmail.com>
Date: Thu, 9 Aug 2018 21:49:03 -0400
Subject: [PATCH] Formatting fix (again...)

---
 od_db_client.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/od_db_client.py b/od_db_client.py
index e7231d2..fd02cf4 100644
--- a/od_db_client.py
+++ b/od_db_client.py
@@ -90,11 +90,11 @@ class OdDatabase:
     @staticmethod
     def format_search_hits(hits, query):
 
-        message = str(hits["hits"]["total"]) + " matches found in " + str(hits["took"]) + "ms for query `" + query + "`"
+        message = "**" + str(hits["hits"]["total"]) + "** matches found in " + str(hits["took"]) + "ms for query `" + query + "`"
         if hits["hits"]["total"] > 0:
             message += ":    \n\n"
-            message += "File | Size | Date     \n"
-            message += ":-- | :-- | --:    \n"
+            message += "File | Size     \n"
+            message += ":-- | --:    \n"
 
             for hit in hits["hits"]["hits"]:
                 src = hit["_source"]