``` [prompt>]% python example.py File "example.py", line 100 print "Update ticket 123456. The new update's id is %.", update{'id'} ``` It should be: ``` print "Update ticket 123456. The new update's id is %s" % update['id'] ```