1 2 3 4 5 6 7 8 9 10 11 12
>>> try: ... raise StatusError(['A', 'B']) ... except StatusError, e: ... print e ... ['A', 'B'] >>> try: ... raise StatusError(['A', 'B']) ... except StatusError, e: ... print e[0] ... ['A', 'B']