/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 bzrlib/tests/test_diff.py

  • Committer: Matt McClure
  • Date: 2008-04-19 00:02:53 UTC
  • mto: (3452.1.1 bzr.dev.mlm)
  • mto: This revision was merged to the branch mainline in revision 3493.
  • Revision ID: mlm@aya.yale.edu-20080419000253-hugwapxqferl51u5
Fixes capitalization of False.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
 
46
46
    def _probe(self):
47
47
        if (sys.platform not in ('cygwin', 'win32')):
48
 
            return false
 
48
            return False
49
49
        try:
50
50
            proc = subprocess.Popen(['attrib', '.'], stdout=subprocess.PIPE)
51
51
        except OSError, e:
52
 
            return false
 
52
            return False
53
53
        return (0 == proc.wait())
54
54
                
55
55
    def feature_name(self):