hgext/journal.py
changeset 29675 12f04946053c
parent 29504 7503d8874617
child 29677 69890b5dd32b
--- a/hgext/journal.py	Thu Aug 04 00:04:48 2016 +0530
+++ b/hgext/journal.py	Sun Jul 31 16:38:16 2016 +0900
@@ -475,8 +475,8 @@
     for count, entry in enumerate(repo.journal.filtered(name=name)):
         if count == limit:
             break
-        newhashesstr = ','.join([node.short(hash) for hash in entry.newhashes])
-        oldhashesstr = ','.join([node.short(hash) for hash in entry.oldhashes])
+        newhashesstr = ','.join([fm.hexfunc(hash) for hash in entry.newhashes])
+        oldhashesstr = ','.join([fm.hexfunc(hash) for hash in entry.oldhashes])
 
         fm.startitem()
         fm.condwrite(ui.verbose, 'oldhashes', '%s -> ', oldhashesstr)