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
{{ message }}
This repository was archived by the owner on Jan 29, 2018. It is now read-only.
When 6pad++.ini file has two or more lines to specify extensions, only the last extension’s errors are detected and displayed in the python console.
Example :
If 6pad++.ini has the following lines :
extension=test1.py
extension=test2.py
Let’s say that test1 has the following code :
Beginning of test1.py
raise Exception('This is an error in test1')
import sixpad
sixpad.say('Message not spoken')
end of test1.py
And let’s say that the code of test2.py is the following :
Beginning of test2.py
import sixpad
sixpad.say('hello world')
end of test2.py
Then the error raised in test1.py will not be displayed in the console whereas it should.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When 6pad++.ini file has two or more lines to specify extensions, only the last extension’s errors are detected and displayed in the python console.
Example :
If 6pad++.ini has the following lines :
extension=test1.py
extension=test2.py
Let’s say that test1 has the following code :
Beginning of test1.py
raise Exception('This is an error in test1')
import sixpad
sixpad.say('Message not spoken')
end of test1.py
And let’s say that the code of test2.py is the following :
Beginning of test2.py
import sixpad
sixpad.say('hello world')
end of test2.py
Then the error raised in test1.py will not be displayed in the console whereas it should.
The text was updated successfully, but these errors were encountered: