1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Description: Fix new print syntax
Author: Angel Abad <angel@debian.org>
Forwarded: no
Last-Update: 2025-10-05
--- glue-0.13.orig/docs/conf.py
+++ glue-0.13/docs/conf.py
@@ -53,10 +53,10 @@ import importlib.metadata
try:
release = importlib.metadata.version('glue')
except importlib.metadata.PackageNotFoundError:
- print 'To build the documentation, The distribution information of glue'
- print 'Has to be available. Either install the package into your'
- print 'development environment or run "setup.py develop" to setup the'
- print 'metadata. A virtualenv is recommended!'
+ print ('To build the documentation, The distribution information of glue')
+ print ('Has to be available. Either install the package into your')
+ print ('development environment or run "setup.py develop" to setup the')
+ print ('metadata. A virtualenv is recommended!')
sys.exit(1)
del importlib
|