~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to hunk_selector.py

  • Committer: Aaron Bentley
  • Date: 2007-01-16 22:17:34 UTC
  • Revision ID: abentley@panoramicfeedback.com-20070116221734-ijxdmpekl9swpf4x
Tweak colordiff/shelf changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
                from colordiff import DiffWriter
14
14
                from terminal import has_ansi_colors
15
15
                if has_ansi_colors():
16
 
                    self.diff_stream = DiffWriter(sys.stdout)
 
16
                    self.diff_stream = DiffWriter(sys.stdout,
 
17
                                                  check_style=False)
17
18
                else:
18
19
                    if color is True:
19
20
                        raise NoColor()