python - List indices must be integers on two dictionaries -


    ret = {}     machs = self.machines_db(**kwargs)      mach in machs:         ret[mach['name']] = mach 

machs list of dictionaries, , each dictionary contains 'name' element.

so, ret , mach both dictionaries. why getting:

list indices must integers, not str

on last line when try run code? other questions i've turned error message have had list being queried string.

thank you!


Comments

Popular posts from this blog

angular - DownloadURL return null in below code -

meteor - inserting data to database gives error "insert failed: Method '/texts/insert' not found" -