From a9a81b990895b4cc19d7a0817ec9e4677f0a870b Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Wed, 7 Oct 2009 19:22:03 -0700 Subject: [PATCH] added noaa to extract doc matcher --- grc/python/extract_docs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grc/python/extract_docs.py b/grc/python/extract_docs.py index f0c1e749..f41f415b 100644 --- a/grc/python/extract_docs.py +++ b/grc/python/extract_docs.py @@ -63,7 +63,7 @@ def _extract(key): #extract descriptions comp_name = extract_txt(xml.xpath(DOXYGEN_NAME_XPATH)[0]).strip() comp_name = ' --- ' + comp_name + ' --- ' - if re.match('(gr|usrp2|trellis)_.*', key): + if re.match('(gr|usrp2|trellis|noaa)_.*', key): brief_desc = extract_txt(xml.xpath(DOXYGEN_BRIEFDESC_GR_XPATH)[0]).strip() detailed_desc = extract_txt(xml.xpath(DOXYGEN_DETAILDESC_GR_XPATH)[0]).strip() else: -- 2.39.5