mirror of
https://github.com/borgbackup/borg.git
synced 2025-02-23 14:41:43 +00:00
Merge pull request #7029 from ThomasWaldmann/relative-imports
Relative imports
This commit is contained in:
commit
16787e48b7
2 changed files with 4 additions and 5 deletions
|
@ -11,6 +11,6 @@
|
|||
os.environ["PATH"] = os.pathsep.join(dll_path) + os.pathsep + os.environ["PATH"]
|
||||
|
||||
|
||||
from borg.archiver import main
|
||||
from .archiver import main
|
||||
|
||||
main()
|
||||
|
|
|
@ -6,10 +6,9 @@
|
|||
|
||||
import pytest
|
||||
|
||||
import borg
|
||||
import borg.helpers.errors
|
||||
from ... import xattr, platform
|
||||
from ...constants import * # NOQA
|
||||
from ...locking import Lock
|
||||
from ...helpers import flags_noatime, flags_normal
|
||||
from .. import has_lchflags, llfuse
|
||||
from .. import changedir, no_selinux
|
||||
|
@ -301,7 +300,7 @@ def wrapper(self, old_id, new_id):
|
|||
return wrapper
|
||||
|
||||
# Decorate
|
||||
borg.locking.Lock.migrate_lock = write_assert_data(borg.locking.Lock.migrate_lock)
|
||||
Lock.migrate_lock = write_assert_data(Lock.migrate_lock)
|
||||
try:
|
||||
self.cmd(f"--repo={self.repository_location}", "rcreate", "--encryption=none")
|
||||
self.create_src_archive("arch")
|
||||
|
@ -347,7 +346,7 @@ def wrapper(self, old_id, new_id):
|
|||
], "new_id must be alive (=must not be stale) when Lock.migrate_lock() has returned."
|
||||
finally:
|
||||
# Undecorate
|
||||
borg.locking.Lock.migrate_lock = borg.locking.Lock.migrate_lock.__wrapped__
|
||||
Lock.migrate_lock = Lock.migrate_lock.__wrapped__
|
||||
|
||||
|
||||
class RemoteArchiverTestCase(RemoteArchiverTestCaseBase, ArchiverTestCase):
|
||||
|
|
Loading…
Reference in a new issue