You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would suggest to manage the CTRL+C signal inside your code since it is one of the two ways to exit. When I use ctrl+c I got this:
Please enter your input message:
^CTraceback (most recent call last):
File "wctool.py", line 238, in
converse(parms.workspaceID)
File "wctool.py", line 165, in converse
minput = raw_input("\nPlease enter your input message:\n")
KeyboardInterrupt
which is an error message that should not appear when you use one of the method suggested to exit from the application.
Best,
M
The text was updated successfully, but these errors were encountered:
I would suggest to manage the CTRL+C signal inside your code since it is one of the two ways to exit. When I use ctrl+c I got this:
Please enter your input message:
^CTraceback (most recent call last):
File "wctool.py", line 238, in
converse(parms.workspaceID)
File "wctool.py", line 165, in converse
minput = raw_input("\nPlease enter your input message:\n")
KeyboardInterrupt
which is an error message that should not appear when you use one of the method suggested to exit from the application.
Best,
M
The text was updated successfully, but these errors were encountered: