~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/__init__.py

MergeĀ lp:bzr.

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
                modules.add(factory._module_name)
91
91
            else:
92
92
                modules.add(factory._obj.__module__)
93
 
    # Add chroot directly, because there is no handler registered for it.
 
93
    # Add chroot and pathfilter directly, because there is no handler
 
94
    # registered for it.
94
95
    modules.add('bzrlib.transport.chroot')
 
96
    modules.add('bzrlib.transport.pathfilter')
95
97
    result = list(modules)
96
98
    result.sort()
97
99
    return result