##// END OF EJS Templates
convert: Clean up authormap key=value splitting....
Marti Raudsepp -
r6186:aae4eb2f default
parent child Browse files
Show More
@@ -194,8 +194,9 b' class converter(object):'
194 194 if line.strip() == '':
195 195 continue
196 196 try:
197 srcauthor = line.split('=')[0].strip()
198 dstauthor = line.split('=')[1].strip()
197 srcauthor, dstauthor = line.split('=', 1)
198 srcauthor = srcauthor.strip()
199 dstauthor = dstauthor.strip()
199 200 if srcauthor in self.authors and dstauthor != self.authors[srcauthor]:
200 201 self.ui.status(
201 202 'Overriding mapping for author %s, was %s, will be %s\n'
General Comments 0
You need to be logged in to leave comments. Login now