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

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-11-16 18:59:44 UTC
  • mfrom: (7143.15.15 more-cleanups)
  • Revision ID: breezy.the.bot@gmail.com-20181116185944-biefv1sub37qfybm
Sprinkle some PEP8iness.

Merged from https://code.launchpad.net/~jelmer/brz/more-cleanups/+merge/358611

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
    import pdb
29
29
    import sys
30
30
    sys.stderr.write("** %s received, entering debugger\n"
31
 
            "** Type 'c' to continue or 'q' to stop the process\n"
32
 
            "** Or %s again to quit (and possibly dump core)\n"
33
 
            % (_breakin_signal_name, _breakin_signal_name))
 
31
                     "** Type 'c' to continue or 'q' to stop the process\n"
 
32
                     "** Or %s again to quit (and possibly dump core)\n"
 
33
                     % (_breakin_signal_name, _breakin_signal_name))
34
34
    # It seems that on Windows, when sys.stderr is to a PIPE, then we need to
35
35
    # flush. Not sure why it is buffered, but that seems to be the case.
36
36
    sys.stderr.flush()