fixed iteritems
This commit is contained in:
parent
c67b1258dd
commit
4b847f7897
@ -21,7 +21,7 @@ from six import iteritems
|
|||||||
|
|
||||||
def get_sle(**args):
|
def get_sle(**args):
|
||||||
condition, values = "", []
|
condition, values = "", []
|
||||||
for key, value in iteritems(args.iteritems):
|
for key, value in iteritems(args):
|
||||||
condition += " and " if condition else " where "
|
condition += " and " if condition else " where "
|
||||||
condition += "`{0}`=%s".format(key)
|
condition += "`{0}`=%s".format(key)
|
||||||
values.append(value)
|
values.append(value)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user