From 0e22a0ca5f901c721a50fbea7c7bde2f2cbbb213 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Mon, 21 Sep 2015 16:41:54 +0200 Subject: [PATCH] Minor cosmetics --- lib/core/dump.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/core/dump.py b/lib/core/dump.py index a4ff91913..03caf233b 100644 --- a/lib/core/dump.py +++ b/lib/core/dump.py @@ -636,11 +636,11 @@ class Dump(object): for column in dbColumnsDict.keys(): if colConsider == "1": - colConsiderStr = "s like '%s' were" % unsafeSQLIdentificatorNaming(column) + colConsiderStr = "s LIKE '%s' were" % unsafeSQLIdentificatorNaming(column) else: colConsiderStr = " '%s' was" % unsafeSQLIdentificatorNaming(column) - msg = "Column%s found in the " % colConsiderStr + msg = "column%s found in the " % colConsiderStr msg += "following databases:" self._write(msg)