changeset 1366:136920d13fc2

Fixed an exception that was caught and improperly forgotten.
author Eric Hopper <hopper@omnifarious.org>
date Fri, 30 Sep 2005 11:06:19 -0700
parents 74cf45f8bc19
children a7678cbd7c28
files mercurial/commands.py
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/commands.py	Fri Sep 30 11:06:13 2005 -0700
+++ b/mercurial/commands.py	Fri Sep 30 11:06:19 2005 -0700
@@ -568,6 +568,7 @@
         f.write(z.flush())
     except:
         os.unlink(fname)
+        raise
 
 def cat(ui, repo, file1, *pats, **opts):
     """output the latest or given revisions of files"""