mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-26 09:47:58 +00:00
5 lines
116 B
Python
5 lines
116 B
Python
try:
|
|
# Only available in python 3.3+
|
|
from unittest.mock import *
|
|
except ImportError:
|
|
from mock import *
|