summaryrefslogtreecommitdiff
path: root/doc/doxygen-link.py
diff options
context:
space:
mode:
Diffstat (limited to 'doc/doxygen-link.py')
-rwxr-xr-xdoc/doxygen-link.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/doxygen-link.py b/doc/doxygen-link.py
index 910b8f8d..1f3f67c7 100755
--- a/doc/doxygen-link.py
+++ b/doc/doxygen-link.py
@@ -11,7 +11,7 @@ rc_script = re.compile(r'\s*(.*\S)?\s*')
def parse_dict(filename):
links = {}
for line in open(filename, 'r'):
- m = re.match('^([^=]+)=([^\n]+)$', line);
+ m = re.match('^([^=]+)=([^\n]+)$', line)
if not m:
continue
name = m.group(1)