Change print statements to print functions

This commit is contained in:
Lisa Y. Zhu 2023-11-12 18:19:16 -05:00
parent 717e080584
commit 39171a6ac6
No known key found for this signature in database
5 changed files with 20 additions and 20 deletions

View File

@ -406,7 +406,7 @@ you can also directly import calibre, as follows::
import init_calibre
import calibre
print calibre.__version__
print(calibre.__version__)
It is essential that you import the init_calibre module before any other calibre modules/packages as
it sets up the interpreter to run calibre code.