/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/plugin.py

  • Committer: Jelmer Vernooij
  • Date: 2019-10-14 00:07:00 UTC
  • mfrom: (7290.1.36 work)
  • mto: This revision was merged to the branch mainline in revision 7405.
  • Revision ID: jelmer@jelmer.uk-20191014000700-f87zd9oufstox41r
Merge lp:brz/3.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
225
225
    """
226
226
    path_details = []
227
227
    env = osutils.path_from_environ(key)
228
 
    defaults = {"user": not env, "core": True, "site": True, 'entrypoints': True}
 
228
    defaults = {
 
229
        "user": not env,
 
230
        "core": True,
 
231
        "site": True,
 
232
        'entrypoints': False,
 
233
        }
229
234
    if env:
230
235
        # Add paths specified by user in order
231
236
        for p in env.split(os.pathsep):