# HG changeset patch # User Eric Hopper # Date 1128103579 25200 # Node ID 136920d13fc267d57f0721d25a5735c80b6d0066 # Parent 74cf45f8bc1901769d4d94809f196932e766fee7 Fixed an exception that was caught and improperly forgotten. diff --git a/mercurial/commands.py b/mercurial/commands.py --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -568,6 +568,7 @@ def bundle(ui, repo, fname, dest="defaul f.write(z.flush()) except: os.unlink(fname) + raise def cat(ui, repo, file1, *pats, **opts): """output the latest or given revisions of files"""