summaryrefslogtreecommitdiff
path: root/grc/python
diff options
context:
space:
mode:
authorJosh Blum2009-10-07 19:22:03 -0700
committerJosh Blum2009-10-07 19:22:03 -0700
commita9a81b990895b4cc19d7a0817ec9e4677f0a870b (patch)
tree8bacddf5017cb6066c17e834757a360d4d09d439 /grc/python
parent30e016dd9cf7c148d3119f01ba7dd4d6474efa50 (diff)
downloadgnuradio-a9a81b990895b4cc19d7a0817ec9e4677f0a870b.tar.gz
gnuradio-a9a81b990895b4cc19d7a0817ec9e4677f0a870b.tar.bz2
gnuradio-a9a81b990895b4cc19d7a0817ec9e4677f0a870b.zip
added noaa to extract doc matcher
Diffstat (limited to 'grc/python')
-rw-r--r--grc/python/extract_docs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/python/extract_docs.py b/grc/python/extract_docs.py
index f0c1e749c..f41f415b2 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: