##// END OF EJS Templates
convert: "unknown" is a string
Alexis S. L. Carvalho -
r4721:96614af3 default
parent child Browse files
Show More
@@ -82,7 +82,7 b' class convert_git(converter_source):'
82 tzs, tzh, tzm = tz[-5:-4] + "1", tz[-4:-2], tz[-2:]
82 tzs, tzh, tzm = tz[-5:-4] + "1", tz[-4:-2], tz[-2:]
83 tz = -int(tzs) * (int(tzh) * 3600 + int(tzm))
83 tz = -int(tzs) * (int(tzh) * 3600 + int(tzm))
84 date = tm + " " + str(tz)
84 date = tm + " " + str(tz)
85 author = author or unknown
85 author = author or "unknown"
86
86
87 c = commit(parents=parents, date=date, author=author, desc=message)
87 c = commit(parents=parents, date=date, author=author, desc=message)
88 return c
88 return c
General Comments 0
You need to be logged in to leave comments. Login now