Fix errors when running build.py with default args

Fixes ugly errors when build.py was run (a) with no --substitutions at all, and
(b) without the expected substitutions
This commit is contained in:
Richard van der Hoff 2016-05-04 18:33:52 +01:00
parent 432c78f3b5
commit be09cd859d
2 changed files with 8 additions and 7 deletions

View file

@ -230,7 +230,8 @@ if __name__ == '__main__':
) )
parser.add_argument( parser.add_argument(
"--substitution", action="append", "--substitution", action="append",
help="Substitutions to apply to the generated output, of form NEEDLE=REPLACEMENT." help="Substitutions to apply to the generated output, of form NEEDLE=REPLACEMENT.",
default=[],
) )
args = parser.parse_args() args = parser.parse_args()

View file

@ -544,15 +544,15 @@ class MatrixUnits(Units):
return { return {
"rows": [{ "rows": [{
"key": "`Client-Server API <client_server.html>`_", "key": "`Client-Server API <client_server.html>`_",
"type": substitutions["%CLIENT_RELEASE_LABEL%"], "type": substitutions.get("%CLIENT_RELEASE_LABEL%", "unstable"),
"desc": "Interaction between clients and servers", "desc": "Interaction between clients and servers",
}, { }, {
"key": "`Server-Server API <server_server.html>`_", "key": "`Server-Server API <server_server.html>`_",
"type": substitutions["%SERVER_RELEASE_LABEL%"], "type": substitutions.get("%SERVER_RELEASE_LABEL%", "unstable"),
"desc": "Federation between servers", "desc": "Federation between servers",
}, { }, {
"key": "`Application Service API <application_service.html>`_", "key": "`Application Service API <application_service.html>`_",
"type": substitutions["%CLIENT_RELEASE_LABEL%"], "type": substitutions.get("%CLIENT_RELEASE_LABEL%", "unstable"),
"desc": "Privileged server plugins", "desc": "Privileged server plugins",
}, { }, {
"key": "`Identity Service API <identity_service.html>`_", "key": "`Identity Service API <identity_service.html>`_",