I have same error as olibre:
http://stackoverflow.com/questions/18049320
Reproduce:
mkdir café_is_UTF8_not_ASCII
cd café_is_UTF8_not_ASCII
repo init
Failure:
UnicodeDecodeError: 'ascii' codec can't decode byte [...]
Proposed fix is to put bellow lines at the script beginning:
import sys
import codecs
sys.stdout = codecs.getwriter('utf8')(sys.stdout)
Refer to:
http://stackoverflow.com/a/1169209/938111
Original issue reported on code.google.com by oliver.h...@gmail.com on 3 Sep 2013 at 3:12
Original issue reported on code.google.com by
oliver.h...@gmail.com
on 3 Sep 2013 at 3:12