mercurial/util_win32.py
changeset 4921 8a53b39cd402
parent 4803 7549cd526b7f
child 4998 81f8ff2a9bf2
--- a/mercurial/util_win32.py	Tue Jul 17 09:39:30 2007 -0700
+++ b/mercurial/util_win32.py	Tue Jul 17 23:33:42 2007 +0200
@@ -209,9 +209,9 @@
 
     def __init__(self, name, mode='rb'):
         access = 0
-        if 'r' in mode or '+' in mode:
+        if 'r' in mode:
             access |= win32file.GENERIC_READ
-        if 'w' in mode or 'a' in mode:
+        if 'w' in mode or 'a' in mode or '+' in mode:
             access |= win32file.GENERIC_WRITE
         if 'r' in mode:
             creation = win32file.OPEN_EXISTING