Kiln » largefiles » largefiles-truncated
Clone URL:  

restore operation to Mercurial 1.9 on Windows

Changeset 86f4efeffc0a

Parent 6c58f3aff3c2

by Profile picture of User 12Benjamin Pollack <benjamin@fogcreek.com>

Changes to one file · Browse files at 86f4efeffc0a Showing diff from parent 6c58f3aff3c2 Diff from another changeset...

Change 1 of 1 Show Entire File kbfiles/​bfutil.py Stacked
 
109
110
111
112
 
 
 
 
113
114
115
 
109
110
111
 
112
113
114
115
116
117
118
@@ -109,7 +109,10 @@
   if os.name == 'nt':   from mercurial import win32 - linkfn = win32.os_link + try: + linkfn = win32.oslink + except: + linkfn = win32.os_link  else:   linkfn = os.link