mirror of https://github.com/borgbackup/borg.git
6 lines
116 B
Python
6 lines
116 B
Python
|
try:
|
||
|
# Only available in python 3.3+
|
||
|
from unittest.mock import *
|
||
|
except ImportError:
|
||
|
from mock import *
|