From efe64e5097ae5d81ffa45d56333d1458e63fceb6 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 24 Mar 2011 10:20:46 -0600 Subject: [PATCH] Change the shebang in the calibre launcher script on linux to explicitly use python2 rather than python --- setup/install.py | 2 +- src/calibre/ebooks/metadata/sources/base.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup/install.py b/setup/install.py index 381ce2dcef..e1a1190ff9 100644 --- a/setup/install.py +++ b/setup/install.py @@ -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. diff --git a/src/calibre/ebooks/metadata/sources/base.py b/src/calibre/ebooks/metadata/sources/base.py index 3ad9822b9c..e2924324c3 100644 --- a/src/calibre/ebooks/metadata/sources/base.py +++ b/src/calibre/ebooks/metadata/sources/base.py @@ -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()