mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2026-04-28 01:33:24 +00:00
6ac4e8065a
The line
```python
from __future__ import unicode_literals
```
introduced in commit [ecc0c5ee01](https://github.com/rg3/youtube-dl/commit/ecc0c5ee01f0e5bdd6af0c32cb5b4adcb2a2f78c) broke youtube-dl for PyPy on Windows, making it unable to locate WinAPI functions.
Error: "TypeError: function name must be a string or integer"
Adding "b" prefix to strings with WinAPI function names fixes it.