Fixed an exception that was caught and improperly forgotten.
authorEric Hopper <hopper@omnifarious.org>
Fri, 30 Sep 2005 11:06:19 -0700
changeset 1366 136920d13fc2
parent 1365 74cf45f8bc19
child 1367 a7678cbd7c28
Fixed an exception that was caught and improperly forgotten.
mercurial/commands.py
--- 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"""