commit | 4b847f78979c260ba4c1ba95c35cca2a53296b46 | [log] [tgz] |
---|---|---|
author | Achilles Rasquinha <achillesrasquinha@gmail.com> | Wed Feb 14 16:44:58 2018 +0530 |
committer | Achilles Rasquinha <achillesrasquinha@gmail.com> | Wed Feb 14 16:44:58 2018 +0530 |
tree | 15b8151d4e9b4519cab952fcb2f55879efcd5026 | |
parent | c67b1258dd7899219efb479f945493f8867eeb73 [diff] |
fixed iteritems
diff --git a/erpnext/stock/doctype/stock_entry/test_stock_entry.py b/erpnext/stock/doctype/stock_entry/test_stock_entry.py index be92ce1..2da9f35 100644 --- a/erpnext/stock/doctype/stock_entry/test_stock_entry.py +++ b/erpnext/stock/doctype/stock_entry/test_stock_entry.py
@@ -21,7 +21,7 @@ def get_sle(**args): condition, values = "", [] - for key, value in iteritems(args.iteritems): + for key, value in iteritems(args): condition += " and " if condition else " where " condition += "`{0}`=%s".format(key) values.append(value)