[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/RDB - IZopeDatabaseAdapter.py:1.5
   
    Steve Alexander
     
    steve@cat-box.net
       
    Fri, 8 Nov 2002 07:37:14 -0500
    
    
  
Update of /cvs-repository/Zope3/lib/python/Zope/App/RDB
In directory cvs.zope.org:/tmp/cvs-serv11397
Modified Files:
	IZopeDatabaseAdapter.py 
Log Message:
fixed spurious argument in interface.
Found thanks to Kapil's interface<-->implementation matching tool :)
=== Zope3/lib/python/Zope/App/RDB/IZopeDatabaseAdapter.py 1.4 => 1.5 ===
--- Zope3/lib/python/Zope/App/RDB/IZopeDatabaseAdapter.py:1.4	Mon Aug 12 11:07:30 2002
+++ Zope3/lib/python/Zope/App/RDB/IZopeDatabaseAdapter.py	Fri Nov  8 07:37:13 2002
@@ -26,7 +26,7 @@
     def setDSN(dsn):
         """Set the DSN for the Adapter instance"""
 
-    def getDSN(dsn):
+    def getDSN():
         """Get the DSN of the Adapter instance"""
 
     def connect():