merge with stable

This commit is contained in:
Matt Mackall 2011-09-12 23:02:45 -05:00
commit af293bcf51
3 changed files with 4 additions and 4 deletions

View File

@ -1199,7 +1199,7 @@ def iterhunks(fp):
m = gitre.match(x)
if not m:
continue
if gitpatches is None:
if not gitpatches:
# scan whole input for git metadata
gitpatches = [('a/' + gp.path, 'b/' + gp.path, gp) for gp
in scangitpatch(lr, x)]

View File

@ -667,9 +667,9 @@ class ui(object):
printed.'''
if self.tracebackflag:
if exc:
traceback.print_exception(exc[0], exc[1], exc[2])
traceback.print_exception(exc[0], exc[1], exc[2], file=self.ferr)
else:
traceback.print_exc()
traceback.print_exc(file=self.ferr)
return self.tracebackflag
def geteditor(self):

View File

@ -288,7 +288,7 @@ One with >200 heads, which used to use up all of the sample:
reading DAG from stdin
$ hg heads -t --template . | wc -c
261
*261 (re)
$ hg clone -b a . a
adding changesets