Documentation Fix

In the section on using Data Tables in Python, it shows adding a row to a multiple links field like this:

zaphod["Friends"] += ford_prefect

That wasn’t working for me. I found an example on the forum that showed the correct syntax:

zaphod["Friends"] += [ford_prefect]

The reference should probably be updated.

Quite right! Thanks for letting us know, I’ll update that.