/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 brzlib/breakin.py

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 14:47:52 UTC
  • mto: This revision was merged to the branch mainline in revision 6623.
  • Revision ID: jelmer@jelmer.uk-20170521144752-8o6jt0a6xat9g7lm
More renames; commands in output, environment variables.

Show diffs side-by-side

added added

removed removed

Lines of Context:
72
72
    """
73
73
 
74
74
    # when sigquit (C-\) or sigbreak (C-Pause) is received go into pdb
75
 
    if os.environ.get('BZR_SIGQUIT_PDB', '1') == '0':
 
75
    if os.environ.get('BRZ_SIGQUIT_PDB', '1') == '0':
76
76
        # User explicitly requested we don't support this
77
77
        return
78
78
    sig = determine_signal()