changeset 4067:c620376b8fd6

Fix wrong module reference in copyfile exception
author Andrei Vermel <avermel@mail.ru>
date Tue, 06 Feb 2007 00:09:36 +0300
parents cff3e4b4a8de
children 5b1f663ef86d 0f9381cf9723
files mercurial/util.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/util.py	Tue Feb 06 15:55:20 2007 -0200
+++ b/mercurial/util.py	Tue Feb 06 00:09:36 2007 +0300
@@ -580,7 +580,7 @@
         shutil.copyfile(src, dest)
         shutil.copymode(src, dest)
     except shutil.Error, inst:
-        raise util.Abort(str(inst))
+        raise Abort(str(inst))
 
 def copyfiles(src, dst, hardlink=None):
     """Copy a directory tree using hardlinks if possible"""