Skip to content

Commit

Permalink
UIA utilities/Python 3: dict.iteritems -> dict.items. Re nvaccess#9067.
Browse files Browse the repository at this point in the history
  • Loading branch information
josephsl committed May 31, 2019
1 parent a6a65bb commit 79b7d6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/UIAUtils.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def createUIAMultiPropertyCondition(*dicts):
outerOrList=[]
for dict in dicts:
andList=[]
for key,values in dict.iteritems():
for key,values in dict.items():
innerOrList=[]
if not isinstance(values,(list,set)):
values=[values]
Expand Down

0 comments on commit 79b7d6d

Please sign in to comment.