diff options
| -rw-r--r-- | repoze/bfg/configuration.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/repoze/bfg/configuration.py b/repoze/bfg/configuration.py index 77dbf28e5..88bdcba58 100644 --- a/repoze/bfg/configuration.py +++ b/repoze/bfg/configuration.py @@ -326,7 +326,9 @@ class Configurator(object): def with_package(self, package): """ Return a new Configurator instance with the same registry as this configurator using the package supplied as the - ``package`` argument to the new configurator.""" + ``package`` argument to the new configurator. ``package`` may + be an actual Python package object or a Python dotted name + representing a package.""" return self.__class__(registry=self.registry, package=package) def maybe_dotted(self, dotted): |
