diff options
| author | Barry Warsaw | 2017-07-22 03:02:05 +0000 |
|---|---|---|
| committer | Barry Warsaw | 2017-07-22 03:02:05 +0000 |
| commit | f00b94f18e1d82d1488cbcee6053f03423bc2f49 (patch) | |
| tree | 1a8e56dff0eab71e58e5fc9ecc5f3c614d7edca7 /src/mailman/__init__.py | |
| parent | f54c045519300f6f70947d1114f46c2b8ae0d368 (diff) | |
| download | mailman-f00b94f18e1d82d1488cbcee6053f03423bc2f49.tar.gz mailman-f00b94f18e1d82d1488cbcee6053f03423bc2f49.tar.zst mailman-f00b94f18e1d82d1488cbcee6053f03423bc2f49.zip | |
Diffstat (limited to 'src/mailman/__init__.py')
| -rw-r--r-- | src/mailman/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mailman/__init__.py b/src/mailman/__init__.py index 194350fd4..0fec711bc 100644 --- a/src/mailman/__init__.py +++ b/src/mailman/__init__.py @@ -24,7 +24,7 @@ import sys try: import pkg_resources pkg_resources.declare_namespace(__name__) -except ImportError: # pragma: no cover +except ImportError: # pragma: nocover import pkgutil __path__ = pkgutil.extend_path(__path__, __name__) @@ -35,7 +35,7 @@ except ImportError: # pragma: no cover # imported. # # Do *not* do this if we're building the documentation. -if 'build_sphinx' not in sys.argv: # pragma: no cover +if 'build_sphinx' not in sys.argv: # pragma: nocover if any('nose2' in arg for arg in sys.argv): from mailman.testing.i18n import initialize else: |
