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
The issue #72 was caused by 0.16.1 raising different exception than 0.16 - TypeError instead of threading.ThreadError. The former does not inherit from Exception, so duplicity failed to intercept it when releasing the lock twice (they always release the lock twice).
We need tests to make sure we maintain the exception interface, as well as docs. And ideally we should not be raising threading.ThreadError, as processes have nothing to do with that.
The text was updated successfully, but these errors were encountered:
The issue #72 was caused by 0.16.1 raising different exception than 0.16 -
TypeError
instead ofthreading.ThreadError
. The former does not inherit fromException
, so duplicity failed to intercept it when releasing the lock twice (they always release the lock twice).We need tests to make sure we maintain the exception interface, as well as docs. And ideally we should not be raising
threading.ThreadError
, as processes have nothing to do with that.The text was updated successfully, but these errors were encountered: