diff options
| -rw-r--r-- | pyramid/config/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pyramid/config/__init__.py b/pyramid/config/__init__.py index 175d8f3a4..724bc7522 100644 --- a/pyramid/config/__init__.py +++ b/pyramid/config/__init__.py @@ -112,9 +112,9 @@ class Configurator( otherwise be done. After its construction, the configurator may be used to add further configuration to the registry. - .. warning:: If a ``registry`` is passed to the Configurator - constructor, all other constructor arguments except ``package`` - are ignored. + .. warning:: If ``registry`` is assigned the above-mentioned class + instance, all other constructor arguments are ignored, + with the exception of ``package``. If the ``package`` argument is passed, it must be a reference to a Python :term:`package` (e.g. ``sys.modules['thepackage']``) or a :term:`dotted |
