##// END OF EJS Templates
Date is an int as a string in changelog
mpm@selenic.com -
r40:5f87633e default
parent child Browse files
Show More
@@ -110,7 +110,7 b' class changelog(revlog):'
110
110
111 def extract(self, text):
111 def extract(self, text):
112 if not text:
112 if not text:
113 return (nullid, "", 0, [], "")
113 return (nullid, "", "0", [], "")
114 last = text.index("\n\n")
114 last = text.index("\n\n")
115 desc = text[last + 2:]
115 desc = text[last + 2:]
116 l = text[:last].splitlines()
116 l = text[:last].splitlines()
General Comments 0
You need to be logged in to leave comments. Login now