diff options
| author | Rémi Verschelde | 2015-12-13 00:01:04 +0100 |
|---|---|---|
| committer | Rémi Verschelde | 2015-12-13 00:01:04 +0100 |
| commit | 410e418aea16cc1c07249a9a64d3defcb8990866 (patch) | |
| tree | adec28ca65ff39bdc59ed26b427896d3a240b54e /doc/tools/makehtml.py | |
| parent | aeb5ea59340f91ae445330c95429f903a8f20e8a (diff) | |
| download | godot-410e418aea16cc1c07249a9a64d3defcb8990866.tar.gz godot-410e418aea16cc1c07249a9a64d3defcb8990866.tar.zst godot-410e418aea16cc1c07249a9a64d3defcb8990866.zip | |
Diffstat (limited to 'doc/tools/makehtml.py')
| -rw-r--r-- | doc/tools/makehtml.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/tools/makehtml.py b/doc/tools/makehtml.py index 9b9c62f33..34db47e42 100644 --- a/doc/tools/makehtml.py +++ b/doc/tools/makehtml.py @@ -1,3 +1,6 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- + import sys import xml.etree.ElementTree as ET from xml.sax.saxutils import escape, unescape @@ -29,7 +32,7 @@ for arg in sys.argv[1:]: input_list.append(arg) if len(input_list) < 1: - print("usage: makehtml.py <class_list.xml>") + print("usage: makehtml.py <classes.xml>") sys.exit(0) |
