Merge pull request #30833 from terminalmage/issue30820

Fix regression in scanning for state with 'name' param
This commit is contained in:
Colton Myers 2016-02-02 14:25:09 -07:00
commit 557766f20b

View file

@ -190,7 +190,7 @@ def find_name(name, state, high):
if len(arg) != 1:
continue
if arg[next(iter(arg))] == name:
ext_id.append((name, state))
ext_id.append((nid, state))
return ext_id