Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
When using an external downloader, self._make_cmd is considered as a list, not a str #6228
Comments
|
|
|
I'm a little Python noob, so excuse me. |
On Python 2.7.2 ported over Android, using an external downloader results in an error.
http://pastebin.com/iwUJ4cHm
Seems like _make_cmd function does not return the cmd as a str.
Using a simple workaround like "return str(cmd)" or "return str(cmd).encode()" still does not work
http://pastebin.com/wxWiYV2V
Please take a look and suggest me a fix.
Thanks :)