Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'certbot-apache/tests/parser_test.py')
-rw-r--r--certbot-apache/tests/parser_test.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/certbot-apache/tests/parser_test.py b/certbot-apache/tests/parser_test.py
index 299eb4567..9cfbea3c9 100644
--- a/certbot-apache/tests/parser_test.py
+++ b/certbot-apache/tests/parser_test.py
@@ -2,7 +2,10 @@
import shutil
import unittest
-import mock
+try:
+ import mock
+except ImportError: # pragma: no cover
+ from unittest import mock
from certbot import errors
from certbot.compat import os