Commit 468a11fb authored by Shane Hathaway's avatar Shane Hathaway

Fixed NameError:

parent 4102af45
...@@ -84,8 +84,8 @@ ...@@ -84,8 +84,8 @@
############################################################################## ##############################################################################
"""Mounted database support """Mounted database support
$Id: Mount.py,v 1.9 2001/01/12 20:57:01 shane Exp $""" $Id: Mount.py,v 1.10 2001/01/31 16:30:49 shane Exp $"""
__version__='$Revision: 1.9 $'[11:-2] __version__='$Revision: 1.10 $'[11:-2]
import thread, Persistence, Acquisition import thread, Persistence, Acquisition
import ExtensionClass, string, time, sys import ExtensionClass, string, time, sys
...@@ -238,6 +238,7 @@ class MountPoint(Persistence.Persistent, Acquisition.Implicit): ...@@ -238,6 +238,7 @@ class MountPoint(Persistence.Persistent, Acquisition.Implicit):
self._v_connect_error = None self._v_connect_error = None
conn = None conn = None
newMount = 0 newMount = 0
mcc = None
try: try:
conn, newMount, mcc = self._openMountableConnection(parent) conn, newMount, mcc = self._openMountableConnection(parent)
data = self._getObjectFromConnection(conn) data = self._getObjectFromConnection(conn)
......
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