node: correct hex representation of pseudo node ids
authorYuya Nishihara <yuya@tcha.org>
Sat, 18 Aug 2018 10:06:56 +0900
changeset 39227 1e7a462cb946
parent 39226 c62184c6299c
child 39228 d859b48730b8
node: correct hex representation of pseudo node ids
mercurial/node.py
--- a/mercurial/node.py	Sun Aug 19 21:53:41 2018 -0400
+++ b/mercurial/node.py	Sat Aug 18 10:06:56 2018 +0900
@@ -29,9 +29,9 @@
 # manifests.
 # In hex, this is '2121212121212121212121212121212121212121'
 newnodeid = '!!!!!!!!!!!!!!!!!!!!'
-# In hex, this is '0000000000000000000000000000006164646564'
+# In hex, this is '3030303030303030303030303030306164646564'
 addednodeid = '000000000000000added'
-# In hex, this is '0000000000000000000000006d6f646966696564'
+# In hex, this is '3030303030303030303030306d6f646966696564'
 modifiednodeid = '000000000000modified'
 
 wdirfilenodeids = {newnodeid, addednodeid, modifiednodeid}