diff hgext/record.py @ 16328:d388c3fc8319

record: fix up test issues sed on BSD requires an arg to -i sed failing exposed an uninitialized variable issue
author Matt Mackall <mpm@selenic.com>
date Sat, 31 Mar 2012 14:04:39 -0500
parents 46b991a1f428
children 525fdb738975 b013baa3898e
line wrap: on
line diff
--- a/hgext/record.py	Sat Mar 31 11:19:09 2012 -0500
+++ b/hgext/record.py	Sat Mar 31 14:04:39 2012 -0500
@@ -324,6 +324,7 @@
 """)
                 (patchfd, patchfn) = tempfile.mkstemp(prefix="hg-editor-",
                         suffix=".diff", text=True)
+                ncpatchfp = None
                 try:
                     # Write the initial patch
                     f = os.fdopen(patchfd, "w")