From 3e46aef392ba9b2e63bbfefefdb7178cc87049ab Mon Sep 17 00:00:00 2001
From: Ben Reynwar <ben@reynwar.net>
Date: Tue, 14 Aug 2012 07:12:53 -0700
Subject: docs: Changed arguments in python docstrings to new formatting style.

---
 gr-wxgui/src/python/scope_window.py | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

(limited to 'gr-wxgui/src/python/scope_window.py')

diff --git a/gr-wxgui/src/python/scope_window.py b/gr-wxgui/src/python/scope_window.py
index dc90a60459..306e1757f1 100644
--- a/gr-wxgui/src/python/scope_window.py
+++ b/gr-wxgui/src/python/scope_window.py
@@ -84,7 +84,9 @@ class control_panel(wx.Panel):
 	def __init__(self, parent):
 		"""
 		Create a new control panel.
-		@param parent the wx parent window
+                
+                Args:
+		    parent: the wx parent window
 		"""
 		WIDTH = 90
 		self.parent = parent
@@ -526,7 +528,9 @@ class scope_window(wx.Panel, pubsub.pubsub):
 		Handle the message from the scope sink message queue.
 		Plot the list of arrays of samples onto the grid.
 		Each samples array gets its own channel.
-		@param msg the time domain data as a character array
+
+                Args:
+		    msg: the time domain data as a character array
 		"""
 		if not self[RUNNING_KEY]: return
 		#check time elapsed
-- 
cgit v1.2.3