comparison hgext/convert/__init__.py @ 4896:ee04732fe61d

merge with crew-stable
author Alexis S. L. Carvalho <alexis@cecm.usp.br>
date Tue, 17 Jul 2007 09:28:01 -0300
parents d77accdd236e fa6c9381d053
children ad09ce1d393c
comparison
equal deleted inserted replaced
4893:44b0031514c1 4896:ee04732fe61d
292 commit author to a destination commit author. It is handy for source SCMs 292 commit author to a destination commit author. It is handy for source SCMs
293 that use unix logins to identify authors (eg: CVS). One line per author 293 that use unix logins to identify authors (eg: CVS). One line per author
294 mapping and the line format is: 294 mapping and the line format is:
295 srcauthor=whatever string you want 295 srcauthor=whatever string you want
296 ''' 296 '''
297
298 util._encoding = 'UTF-8'
297 299
298 if not dest: 300 if not dest:
299 dest = hg.defaultdest(src) + "-hg" 301 dest = hg.defaultdest(src) + "-hg"
300 ui.status("assuming destination %s\n" % dest) 302 ui.status("assuming destination %s\n" % dest)
301 303