From 327119f9ea331249ef99697734e7ebe39fa1ae7e Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sat, 26 Jun 2010 16:43:39 -0400 Subject: [PATCH] Add leading space to where string --- sitecore/prof/export_mysql.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sitecore/prof/export_mysql.py b/sitecore/prof/export_mysql.py index 1514c9e..5b873d6 100644 --- a/sitecore/prof/export_mysql.py +++ b/sitecore/prof/export_mysql.py @@ -111,7 +111,7 @@ class SimpleDB (object): where_args = [] for key,value in dict.items(): where_args.append("%s='%s'" % (key,value)) - where = 'where %s' % ' and '.join(where_args) + where = ' where %s' % ' and '.join(where_args) return where -- 2.26.2