diff --git a/README.md b/README.md index c4222fd..a9d5645 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Converting to other formats As a Git repository the file isn't all that useful. You can export it in other formats as follows: ```bash -python2 makeJargon.py +python makeJargon.py ``` All of the resulting documents can be found in the _docs_ subdirectory. Current formats supported are manpages, HTML and org-mode markup. diff --git a/makeJargon.py b/makeJargon.py index 62bfde5..255b6ac 100755 --- a/makeJargon.py +++ b/makeJargon.py @@ -146,7 +146,7 @@ def jargonToManpage(manpageFilename, entries, version, publishername): fp.close() os.system("gzip " + manpageFilename) - print "manpage can be installed with the command:" + print("manpage can be installed with the command:") print("sudo install -m 644 " + manpageFilename + ".gz /usr/local/share/man/man1")