# HG changeset patch # User Andrei Vermel # Date 1170709776 -10800 # Node ID c620376b8fd6a77195f13c3a87d9f1931854fbe0 # Parent cff3e4b4a8de72719a80f7aadea6e6542ba33a24 Fix wrong module reference in copyfile exception diff -r cff3e4b4a8de -r c620376b8fd6 mercurial/util.py --- 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"""