comparison hgext/mq.py @ 7614:f9fcb189c8e2

mq: make qnew patch format consistent with qrefresh (issue1457)
author Bernhard Leiner <bleiner@gmail.com>
date Mon, 12 Jan 2009 09:12:35 +0100
parents 12df451ce205
children e9da3de01e0a
comparison
equal deleted inserted replaced
7613:bcbe8446bf2b 7614:f9fcb189c8e2
754 self.applied.append(statusentry(revlog.hex(n), patchfn)) 754 self.applied.append(statusentry(revlog.hex(n), patchfn))
755 self.parse_series() 755 self.parse_series()
756 self.series_dirty = 1 756 self.series_dirty = 1
757 self.applied_dirty = 1 757 self.applied_dirty = 1
758 if msg: 758 if msg:
759 msg = msg + "\n" 759 msg = msg + "\n\n"
760 p.write(msg) 760 p.write(msg)
761 if commitfiles: 761 if commitfiles:
762 diffopts = self.diffopts() 762 diffopts = self.diffopts()
763 if opts.get('git'): diffopts.git = True 763 if opts.get('git'): diffopts.git = True
764 parent = self.qparents(repo, n) 764 parent = self.qparents(repo, n)