We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There's a snippet of code on http://py2deb.readthedocs.io/en/stable/developers.html?highlight=post#module-py2deb.converter that currently reads:
>>> from py2deb import PackageConverter >>> converter = PackageConverter() >>> archives, relationships = converter.convert(['py2deb']) >>> print(archives) ['/tmp/python-py2deb_0.18_all.deb'] >>> print(relationships) ['python-py2deb (=0.18)']
I'm pretty sure that first line should be
>>> from py2deb.converter import PackageConverter
The text was updated successfully, but these errors were encountered:
Hi Brian and thanks for pointing this out, you are correct. I'll rectify this in the coming days.
Sorry, something went wrong.
4f2e64d
No branches or pull requests
There's a snippet of code on http://py2deb.readthedocs.io/en/stable/developers.html?highlight=post#module-py2deb.converter that currently reads:
I'm pretty sure that first line should be
The text was updated successfully, but these errors were encountered: