mercurial/util.py
changeset 1591 5a3229cf1492
parent 1585 d7c4b9bfcc94
child 1594 a329e0fda2ae
--- a/mercurial/util.py	Fri Dec 16 01:32:28 2005 -0600
+++ b/mercurial/util.py	Fri Dec 16 01:32:44 2005 -0600
@@ -357,9 +357,9 @@
                 os_link(src, dst)
             except:
                 hardlink = False
-                shutil.copy2(src, dst)
+                shutil.copy(src, dst)
         else:
-            shutil.copy2(src, dst)
+            shutil.copy(src, dst)
 
 def opener(base):
     """