Change the shebang in the calibre launcher script on linux to explicitly use python2 rather than python

This commit is contained in:
Kovid Goyal 2011-03-24 10:20:46 -06:00
parent 2db764525d
commit efe64e5097
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ from setup import Command, islinux, isfreebsd, basenames, modules, functions, \
__appname__, __version__
HEADER = '''\
#!/usr/bin/env python
#!/usr/bin/env python2
"""
This is the standard runscript for all of calibre's tools.

View File

@ -95,7 +95,7 @@ class Source(Plugin):
supported_platforms = ['windows', 'osx', 'linux']
#: Set of capabilites supported by this plugin.
#: Set of capabilities supported by this plugin.
#: Useful capabilities are: 'identify', 'cover'
capabilities = frozenset()