cope with ANY error when importing pytest into borg.testsuite, #4652
@@ -27,7 +27,7 @@ except ImportError:
try:
from pytest import raises
-except ImportError:
+except: # noqa
raises = None
has_lchflags = hasattr(os, 'lchflags') or sys.platform.startswith('linux')