mirror of
https://github.com/retspen/webvirtmgr.git
synced 2026-04-25 15:45:51 +03:00
[GH-ISSUE #242] Usage on Python 3 Default Systems #190
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @normaldotcom on GitHub (Feb 19, 2014).
Original GitHub issue: https://github.com/retspen/webvirtmgr/issues/242
To run webvirtmgr on systems that have Python 3 as the default python installation, users have to modify manage.py, webvirtmgr-novnc, etc and change
#!/usr/bin/env pythonto
#!/usr/bin/env python2so the scripts are run with Python 2 instead of the system default Python 3. Would it be possible to explicitly specify python2 in these files to avoid this issue? The python2 binary/symlink exists in all major linux distros (as far as I know).
@retspen commented on GitHub (Feb 20, 2014):
Not all linux distros have jumped to new PEP8 specification for python2 and python3.