wme-at-contact-de
Results
1
issues of
wme-at-contact-de
Incorrectly decoded strings in Repository.path and Repository.workdir when using Python 3 on Windows
1
Example: > \>import pygit2 > \>import sys > \>r = pygit2.init_repository(r"C:\repösitory") > \>r.path 'C:/repösitory/.git/' # this is a wrongly decoded path > \>r.path.encode(sys.getfilesystemencoding()).decode("utf-8") # workaround 'C:/repösitory/.git/' # this looks right...