Re: Only a message at the highest exception

2019-06-28 Thread Cecil Westerhof
Cameron Simpson writes: > On 28Jun2019 12:17, Cecil Westerhof wrote: >>Chris Angelico writes: >>> On Fri, Jun 28, 2019 at 7:33 PM Cecil Westerhof wrote: I have a tkinter program where I have a function generate_report which in a try block calls the function append_row. This func

Re: Only a message at the highest exception

2019-06-28 Thread Cameron Simpson
On 28Jun2019 12:17, Cecil Westerhof wrote: Chris Angelico writes: On Fri, Jun 28, 2019 at 7:33 PM Cecil Westerhof wrote: I have a tkinter program where I have a function generate_report which in a try block calls the function append_row. This function has also a try block. When they get an

Re: Only a message at the highest exception

2019-06-28 Thread Cecil Westerhof
Chris Angelico writes: > On Fri, Jun 28, 2019 at 7:33 PM Cecil Westerhof wrote: >> >> I have a tkinter program where I have a function generate_report which >> in a try block calls the function append_row. This function has also a >> try block. When they get an exception they give message. But w

Re: Only a message at the highest exception

2019-06-28 Thread Chris Angelico
On Fri, Jun 28, 2019 at 7:33 PM Cecil Westerhof wrote: > > I have a tkinter program where I have a function generate_report which > in a try block calls the function append_row. This function has also a > try block. When they get an exception they give message. But when > append_row has already gi

Only a message at the highest exception

2019-06-28 Thread Cecil Westerhof
I have a tkinter program where I have a function generate_report which in a try block calls the function append_row. This function has also a try block. When they get an exception they give message. But when append_row has already given a message then generate_report should not. To implement this I