# HG changeset patch # User mpm@selenic.com # Date 1122131682 18000 # Node ID b3820ce0e88ab83286fbe838162d1777c63b7b00 # Parent 0c033ef053ab8478bc94f039d71a2e4bb755b126 Fix bug in exception handling for hardlink clone diff -r 0c033ef053ab -r b3820ce0e88a mercurial/commands.py --- a/mercurial/commands.py Sat Jul 23 10:08:40 2005 -0500 +++ b/mercurial/commands.py Sat Jul 23 10:14:42 2005 -0500 @@ -436,7 +436,7 @@ copyfile) try: os.unlink(os.path.join(dest, ".hg", "dirstate")) - except IOError: + except OSError: pass repo = hg.repository(ui, dest)