https://github.com/cmusphinx/sphinxbase/commit/6989c52a3fb9473fd61326e548440fff887525c2 commit 6989c52a3fb9473fd61326e548440fff887525c2 Author: Michel Zou Date: Thu Feb 6 07:02:06 2020 +0100 Fix doxy2swig.py IndexError: list index out of range diff --git a/doc/doxy2swig.py b/doc/doxy2swig.py index 5589b0d..a01c4b1 100644 --- a/doc/doxy2swig.py +++ b/doc/doxy2swig.py @@ -299,7 +299,10 @@ class Doxy2SWIG: name = first['name'].firstChild.data for n in node.getElementsByTagName('param'): - arg_type = n.getElementsByTagName('type')[0] + elts = n.getElementsByTagName('type') + if len(elts) == 0: + continue + arg_type = elts[0] ref = self.get_specific_nodes(arg_type, ('ref')) if 'ref' in ref: type_name = ref['ref'].firstChild.data e='switch'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/po/doc/guix-manual.ru.po
diff options
context:
space:
mode:
authorFlorian Pelz <pelzflorian@pelzflorian.de>2024-09-30 22:50:46 +0200
committerFlorian Pelz <pelzflorian@pelzflorian.de>2024-10-01 00:47:02 +0200
commit25ff62e2501badd10c55e81ef2e8655fb8f85177 (patch)
treeb77a882f457f689fa025d4d34ac9692e37dd8f70 /po/doc/guix-manual.ru.po
parentdd4340a910aec3896275d83212f9c6086d9e14c6 (diff)
downloadguix-25ff62e2501badd10c55e81ef2e8655fb8f85177.tar.gz
guix-25ff62e2501badd10c55e81ef2e8655fb8f85177.zip
nls: Update translations.
Change-Id: Ic1f7216e35c17c3de07a5e56ce582c236dadafcd
Diffstat (limited to 'po/doc/guix-manual.ru.po')