[BUG] misplaced manifest field in log --debug

TK Soh teekaysoh at yahoo.com
Thu Sep 29 19:31:04 CDT 2005


The manifest was printed up before the changesets when doing log --debug.

# HG changeset patch
# User TK Soh <teekaysoh at yahoo.com>
# Node ID c44d8cf646ba7b046789e1e60359fc6d1931d7c7
# Parent  0f25830f6bc3f0d36e88ec8c1ae11b62ecd0108b
log --debug: fix misplaced manifest field

diff -r 0f25830f6bc3 -r c44d8cf646ba mercurial/commands.py
--- a/mercurial/commands.py     Thu Sep 29 15:18:32 2005 -0700
+++ b/mercurial/commands.py     Fri Sep 30 08:25:00 2005 +0800
@@ -1239,6 +1239,9 @@
                 self.write(*args)
         def write(self, *args):
             self.hunk[self.rev].append(args)
+        def debug(self, *args):
+            if self.debugflag:
+                self.write(*args)
         def __getattr__(self, key):
             return getattr(self.ui, key)
     cwd = repo.getcwd()



		
__________________________________ 
Yahoo! Mail - PC Magazine Editors' Choice 2005 
http://mail.yahoo.com


More information about the Mercurial mailing list