File: doc-conf-python3.diff

package info (click to toggle)
libaunit 21.0.0.fa386849-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,344 kB
  • sloc: ada: 5,501; python: 220; makefile: 207; sh: 92; xml: 13
file content (36 lines) | stat: -rw-r--r-- 1,232 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Description: Adapt doc/share/conf.py to python3
Forwarded: https://github.com/AdaCore/aunit/pull/20
Author: Nicolas Boulenguez <nicolas@debian.org>

--- a/doc/share/conf.py
+++ b/doc/share/conf.py
@@ -36,17 +36,17 @@
             line = (vinfo.readline()).strip()
             return line
     except:
-        print 'Error opening or reading version_information file'
+        print ('Error opening or reading version_information file')
         sys.exit(1)
 
 # First retrieve the name of the documentation we are building
 doc_name = os.environ.get('DOC_NAME', None)
 if doc_name is None:
-    print 'DOC_NAME environment variable should be set'
+    print ('DOC_NAME environment variable should be set')
     sys.exit(1)
 
 if doc_name not in DOCS:
-    print '%s is not a valid documentation name' % doc_name
+    print ('%s is not a valid documentation name' % doc_name)
     sys.exit(1)
 
 # Exclude sources that are not part of the current documentation
@@ -54,7 +54,7 @@
 for d in os.listdir(root_source_dir):
     if d not in ('share', doc_name, doc_name + '.rst'):
         exclude_patterns.append(d)
-        print 'ignoring %s' % d
+        print ('ignoring %s' % d)
 
 extensions = []
 templates_path = ['_templates']