~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/osutils.py

  • Committer: INADA Naoki
  • Date: 2010-02-22 07:47:07 UTC
  • mto: (4634.141.1 2.0-integration)
  • mto: This revision was merged to the branch mainline in revision 5075.
  • Revision ID: songofacandy@gmail.com-20100222074707-xy3aow1oxeuaz6h3
Fix easy miss in previous commit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1911
1911
        _cached_concurrency = concurrency
1912
1912
    return concurrency
1913
1913
 
1914
 
if os.platform = 'win32':
 
1914
if sys.platform == 'win32':
1915
1915
    def open(filename, mode='r', bufsize=-1):
1916
1916
        writing = 'w' in mode
1917
1917
        updating = '+' in mode