Closed FelixBoers closed 7 years ago
chcp on a german windows returns: Aktive Codepage: 850.\r\n
chcp
Because .strip() only removes blank and line breaks 850. becomes the name of the codepage.
.strip()
850.
In order to remove the dot from the name we've to add it to the list of characters we have to remove.
Fixes #89
Awesome! I'll test it a bit in a few scenarios and let you know how it goes (I'll deploy it along with #91 )
Great! Thanks for your reply.
All good! I'll deploy it as part of 6.1.2
6.1.2
Thanks a lot
chcp
on a german windows returns: Aktive Codepage: 850.\r\nBecause
.strip()
only removes blank and line breaks850.
becomes the name of the codepage.In order to remove the dot from the name we've to add it to the list of characters we have to remove.
Fixes #89