Move borgmatic.borg.execute module up a level for broader use.
This commit is contained in:
parent
1af95714c2
commit
f5582b1754
5 changed files with 4 additions and 4 deletions
|
@ -4,7 +4,7 @@ import logging
|
|||
import os
|
||||
import tempfile
|
||||
|
||||
from borgmatic.borg.execute import execute_command
|
||||
from borgmatic.execute import execute_command
|
||||
from borgmatic.logger import get_logger
|
||||
|
||||
logger = get_logger(__name__)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import logging
|
||||
|
||||
from borgmatic.borg.execute import execute_command
|
||||
from borgmatic.execute import execute_command
|
||||
from borgmatic.logger import get_logger
|
||||
|
||||
logger = get_logger(__name__)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
import logging
|
||||
|
||||
from borgmatic.borg.execute import execute_command
|
||||
from borgmatic.execute import execute_command
|
||||
from borgmatic.logger import get_logger
|
||||
|
||||
logger = get_logger(__name__)
|
||||
|
|
|
@ -2,7 +2,7 @@ import logging
|
|||
|
||||
from flexmock import flexmock
|
||||
|
||||
from borgmatic.borg import execute as module
|
||||
from borgmatic import execute as module
|
||||
|
||||
|
||||
def test_execute_command_calls_full_command():
|
||||
|
|
Loading…
Reference in a new issue