Mercurial > hg-stable
changeset 11645:88b89ace643b stable
patch: fix extract() docstring, it returns branch as well
author | Dan Drake <drake@kaist.edu> |
---|---|
date | Thu, 22 Jul 2010 14:30:27 +0900 |
parents | 50fede14fe4d |
children | 91af149b5cd7 |
files | mercurial/patch.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/patch.py Thu Jul 22 14:33:50 2010 +0900 +++ b/mercurial/patch.py Thu Jul 22 14:30:27 2010 +0900 @@ -174,7 +174,7 @@ patch can be a normal patch or contained in an email message. - return tuple (filename, message, user, date, node, p1, p2). + return tuple (filename, message, user, date, branch, node, p1, p2). Any item in the returned tuple can be None. If filename is None, fileobj did not contain a patch. Caller must unlink filename when done.'''