Commit 09c47d87 authored by Jim Fulton's avatar Jim Fulton

Added missing self in _connectionMap.

parent 33bd14da
......@@ -84,8 +84,8 @@
##############################################################################
"""Database objects
$Id: DB.py,v 1.6 1999/05/18 15:55:09 jim Exp $"""
__version__='$Revision: 1.6 $'[11:-2]
$Id: DB.py,v 1.7 1999/06/16 19:15:39 jim Exp $"""
__version__='$Revision: 1.7 $'[11:-2]
import cPickle, cStringIO, sys, POSException
from Connection import Connection
......@@ -187,7 +187,7 @@ class DB:
pool_lock.release()
finally: self._r()
def _connectionMap(f):
def _connectionMap(self, f):
self._a()
try:
pools,pooll=self._pools
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment