Open jdinunzio opened 8 years ago
I encountered the same problem. To solve it, I changed my git config :
$ git config --global user.name
Simon Prévidente
$ git config --global user.name "Simon PREVIDENTE" --replace-all
$ git config --global user.name
Simon PREVIDENTE
Yes, another option is to use ~/.mrbob
[variables]
author.name = Jose Dinuncio
but ideally, mr.bob should accept unicode.
The proble is that six.u()
requires ASCII in python 2.7. Maybe it could assume that the default values come in utf8?
Thank's a lot, I've the same problem.... MrBob don't like André but Andre he like :-)
When I execute mr.bob, it fails because my name is José
The code:
The question is "Author's name" and the default is "José Dinuncio", which can't be converted to unicode, since
six.u
requires ASCII.