diff options
author | Simon Howard | 2010-11-09 16:10:52 +0000 |
---|---|---|
committer | Simon Howard | 2010-11-09 16:10:52 +0000 |
commit | 167d4df40b55f2e8b559a797bb93b09554a871d0 (patch) | |
tree | 356567df4cb4fffdfc645df607204035e6f07f09 /man | |
parent | 253731b66d4a70d5040d11e4b1acf8aa58230a46 (diff) | |
download | chocolate-doom-167d4df40b55f2e8b559a797bb93b09554a871d0.tar.gz chocolate-doom-167d4df40b55f2e8b559a797bb93b09554a871d0.tar.bz2 chocolate-doom-167d4df40b55f2e8b559a797bb93b09554a871d0.zip |
Update Python scripts to work in Python 3.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 2162
Diffstat (limited to 'man')
-rwxr-xr-x | man/docgen | 25 |
1 files changed, 11 insertions, 14 deletions
@@ -150,11 +150,8 @@ config_files = {} show_vanilla_options = True class Parameter: - def __cmp__(self, other): - if self.name < other.name: - return -1 - else: - return 1 + def __lt__(self, other): + return self.name < other.name def __init__(self): self.text = "" @@ -389,7 +386,7 @@ def print_template(template_file, content): try: for line in f: line = line.replace("@content", content) - print line.rstrip() + print(line.rstrip()) finally: f.close() @@ -407,7 +404,7 @@ def wiki_output(targets, template): read_wikipages() for t in targets: - print t.wiki_output() + print(t.wiki_output()) def plaintext_output(targets, template_file): @@ -419,13 +416,13 @@ def plaintext_output(targets, template_file): print_template(template_file, content) def usage(): - print "Usage: %s [-V] [-c filename ]( -m | -w | -p ) <directory>" \ - % sys.argv[0] - print " -c : Provide documentation for the specified configuration file" - print " -m : Manpage output" - print " -w : Wikitext output" - print " -p : Plaintext output" - print " -V : Don't show Vanilla Doom options" + print("Usage: %s [-V] [-c filename ]( -m | -w | -p ) <directory>" \ + % sys.argv[0]) + print(" -c : Provide documentation for the specified configuration file") + print(" -m : Manpage output") + print(" -w : Wikitext output") + print(" -p : Plaintext output") + print(" -V : Don't show Vanilla Doom options") sys.exit(0) # Parse command line |