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
In some parts of the code, too generic try:except: are used.
And so, sometimes, s3cmd will not exit despite the user trying to interrupt it with multiple ctrl+c.
For example, it will be the case during long loops of remote copy of the same file.
Example
In some parts of the code, too generic try:except: are used.
And so, sometimes, s3cmd will not exit despite the user trying to interrupt it with multiple ctrl+c.
For example, it will be the case during long loops of remote copy of the same file.
Example
The issue is code like that:
SystemExit and KeyboardInterrupt are the only exceptions that do not inherit from Exception, but are still catched by the absolute catch-all
except:
The text was updated successfully, but these errors were encountered: