commit-gnue
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnue] r7904 - trunk/gnue-common/src/datasources/drivers/Base


From: johannes
Subject: [gnue] r7904 - trunk/gnue-common/src/datasources/drivers/Base
Date: Thu, 15 Sep 2005 04:58:16 -0500 (CDT)

Author: johannes
Date: 2005-09-15 04:58:15 -0500 (Thu, 15 Sep 2005)
New Revision: 7904

Modified:
   trunk/gnue-common/src/datasources/drivers/Base/RecordSet.py
Log:
Fixed typo in exception class


Modified: trunk/gnue-common/src/datasources/drivers/Base/RecordSet.py
===================================================================
--- trunk/gnue-common/src/datasources/drivers/Base/RecordSet.py 2005-09-15 
06:46:25 UTC (rev 7903)
+++ trunk/gnue-common/src/datasources/drivers/Base/RecordSet.py 2005-09-15 
09:58:15 UTC (rev 7904)
@@ -402,7 +402,7 @@
     @param methodname: Name of the function to call.
     @param parameters: Dictionary with parametername/value pairs.
     @return: Return value of the function that was called.
-    @raise Exceptions.FunctionCallOnEmptyRecordError: if the record is
+    @raise Exceptions.FunctionCallOfEmptyRecordError: if the record is
       empty.
     @raise Exception: whatever the called function raises
     """
@@ -411,7 +411,7 @@
     checktype (parameters, dict)
 
     if self.isEmpty ():
-      raise Exceptions.FunctionCallOnEmptyRecordError
+      raise Exceptions.FunctionCallOfEmptyRecordError
 
     return self.__connection.call (self.__tablename, self.__wherefields (),
         methodname, parameters)





reply via email to

[Prev in Thread] Current Thread [Next in Thread]