mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-26 09:47:58 +00:00
import IntegrityError used as base class with according name
This not only brings code style in line with the other helpers that do the same thing this way, but also does away with an unnecessary absolute import using the borg module name explicitly.
This commit is contained in:
parent
1614abd4b9
commit
c34df51e3e
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
from ..constants import * # NOQA
|
from ..constants import * # NOQA
|
||||||
|
|
||||||
import borg.crypto.low_level
|
from ..crypto.low_level import IntegrityError as IntegrityErrorBase
|
||||||
|
|
||||||
|
|
||||||
class Error(Exception):
|
class Error(Exception):
|
||||||
|
@ -30,7 +30,7 @@ class ErrorWithTraceback(Error):
|
||||||
traceback = True
|
traceback = True
|
||||||
|
|
||||||
|
|
||||||
class IntegrityError(ErrorWithTraceback, borg.crypto.low_level.IntegrityError):
|
class IntegrityError(ErrorWithTraceback, IntegrityErrorBase):
|
||||||
"""Data integrity error: {}"""
|
"""Data integrity error: {}"""
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue