r419 - in branches/rewrite: . src

Otavio Salvador partial-mirror-devel@lists.alioth.debian.org
Fri, 17 Dec 2004 20:45:01 -0700


Author: otavio
Date: Fri Dec 17 20:44:57 2004
New Revision: 419

Modified:
   branches/rewrite/   (props changed)
   branches/rewrite/src/PackageList.py
Log:
 r1366@nurf:  otavio | 2004-12-18T03:44:45.260682Z
 Fallowing documentation layout. Small fixes for it.


Modified: branches/rewrite/src/PackageList.py
==============================================================================
--- branches/rewrite/src/PackageList.py	(original)
+++ branches/rewrite/src/PackageList.py	Fri Dec 17 20:44:57 2004
@@ -32,8 +32,9 @@
     Exception called when someone tries to add a package but it was already
     included.
     
-    Attributes:
-        package -- The name of package.
+    Parameters:
+
+    - *package*: The name of package.
     """
     def __init__(self, package):
         Exception.__init__(self)
@@ -44,9 +45,9 @@
     Exception called when someone tries to remove a package that was not
     included.
 
-    Attributes:
+    Parameters:
 
-    - package: The name of package.
+    - *package*: The name of package.
     """
     def __init__(self, package):
         Exception.__init__(self)
@@ -57,7 +58,8 @@
     Exception called when someone try to use a invalid filter option.
 
     Parameters:
-        *option* -- The filter option.
+
+    - *option*: The filter option.
     """
     def __init__(self, option):
         Exception.__init__(self)