From 7b3f9975dcbba94b095d8e61b6b4793138dbf647 Mon Sep 17 00:00:00 2001
From: mi-a <kermitalter@gmail.com>
Date: Sat, 19 Apr 2014 13:37:38 +0300
Subject: documentation - fix example in case anyone gets confused

---
 docs/doxygen/other/main_page.dox | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'docs/doxygen')

diff --git a/docs/doxygen/other/main_page.dox b/docs/doxygen/other/main_page.dox
index dde7610974..62ea8a9929 100644
--- a/docs/doxygen/other/main_page.dox
+++ b/docs/doxygen/other/main_page.dox
@@ -79,7 +79,7 @@ done. A single source and sink are used with a FIR filter between
 them.
 
 \code
-    from gnuradio import gr, filter, analog
+    from gnuradio import gr, blocks, filter, analog
 
     class my_topblock(gr.top_block):
         def __init__(self):
@@ -88,7 +88,7 @@ them.
             amp = 1
             taps = filter.firdes.low_pass(1, 1, 0.1, 0.01)
 
-            self.src = analog.noise_source_c(gr.GR_GAUSSIAN, amp)
+            self.src = analog.noise_source_c(analog.GR_GAUSSIAN, amp)
             self.flt = filter.fir_filter_ccf(1, taps)
             self.snk = blocks.null_sink(gr.sizeof_gr_complex)
 
-- 
cgit v1.2.3