[PATCH 3/7] doc/prerst2man.py: Use Python-3-compatible octal notation
W. Trevor King
wking at tremily.us
Sat Apr 5 10:31:07 PDT 2014
Python 3 only supports the 0oXXX notation for octal literals [1,2],
which have also been supported in 2.x since 2.6 [2].
[1]: https://docs.python.org/3.0/whatsnew/3.0.html#integers
[2]: http://legacy.python.org/dev/peps/pep-3127/
---
doc/prerst2man.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/doc/prerst2man.py b/doc/prerst2man.py
index 4591264..108f4a3 100644
--- a/doc/prerst2man.py
+++ b/doc/prerst2man.py
@@ -8,7 +8,7 @@ sourcedir = argv[1]
outdir = argv[2]
if not isdir(outdir):
- makedirs(outdir, 0755)
+ makedirs(outdir, 0o755)
execfile(sourcedir + "/conf.py")
@@ -34,7 +34,7 @@ blankre = re.compile("^\s*$")
for page in man_pages:
outdirname = outdir + '/' + dirname(page[0])
if not isdir(outdirname):
- makedirs(outdirname, 0755)
+ makedirs(outdirname, 0o755)
filename = outdir + '/' + page[0] + '.rst'
outfile = open(filename, 'w')
infile = open(sourcedir + '/' + page[0] + '.rst', 'r')
--
1.9.1.353.gc66d89d
More information about the notmuch
mailing list