##// END OF EJS Templates
py3: do not try to byte-stringify None in cmdutil.tryimportone()...
Yuya Nishihara -
r37488:d658cbef default
parent child Browse files
Show More
@@ -1398,7 +1398,7 b' def tryimportone(ui, repo, hunk, parents'
1398 1398 else:
1399 1399 # launch the editor
1400 1400 message = None
1401 ui.debug('message:\n%s\n' % message)
1401 ui.debug('message:\n%s\n' % (message or ''))
1402 1402
1403 1403 if len(parents) == 1:
1404 1404 parents.append(repo[nullid])
General Comments 0
You need to be logged in to leave comments. Login now