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

  • Committer: Matt McClure
  • Date: 2008-04-18 02:51:35 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-20080418025135-o29ysst4f3sz116n
Changed tested sys.platform value from 'windows' (mistaken) to 'win32'
(valid).

Show diffs side-by-side

added added

removed removed

Lines of Context:
858
858
 
859
859
def host_os_dereferences_symlinks():
860
860
    return (has_symlinks()
861
 
            and sys.platform not in ('cygwin', 'windows'))
 
861
            and sys.platform not in ('cygwin', 'win32'))
862
862
 
863
863
 
864
864
def contains_whitespace(s):