From: W. Trevor King Date: Sat, 26 Jun 2010 20:43:39 +0000 (-0400) Subject: Add leading space to where string X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=327119f9ea331249ef99697734e7ebe39fa1ae7e;p=sitecorepy.git Add leading space to where string --- 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