~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/msgeditor.py

  • Committer: Vincent Ladeuil
  • Date: 2011-05-17 21:20:10 UTC
  • mto: This revision was merged to the branch mainline in revision 5945.
  • Revision ID: v.ladeuil+lp@free.fr-20110517212010-iynmwoa8hpr0q11o
Use GlobalStack.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
    except KeyError:
42
42
        pass
43
43
 
44
 
    e = config.GlobalConfig().get_editor()
 
44
    e = config.GlobalStack().get('editor')
45
45
    if e is not None:
46
46
        yield e, config.config_filename()
47
47