Merge pull request #47507 from gtmanfred/2018.3

fix win_task for py3
This commit is contained in:
Nicole Thomas 2018-05-07 13:41:20 -04:00 committed by GitHub
commit 17cfd4f7cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -240,7 +240,7 @@ def _reverse_lookup(dictionary, value):
value_index = idx
break
return dictionary.keys()[value_index]
return list(dictionary)[value_index]
def _lookup_first(dictionary, key):