summaryrefslogtreecommitdiffstats
path: root/Lib/bsddb
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2006-08-17 23:29:08 (GMT)
committerGuido van Rossum <guido@python.org>2006-08-17 23:29:08 (GMT)
commitcde2eadcf46c4cc993d18c8de7121bbb952a1372 (patch)
tree0e4e575ee3b4c10fc01b805980c880a609fce834 /Lib/bsddb
parent4011a249a8a21b5f07e492df1fed4b63e97a98b6 (diff)
downloadcpython-cde2eadcf46c4cc993d18c8de7121bbb952a1372.zip
cpython-cde2eadcf46c4cc993d18c8de7121bbb952a1372.tar.gz
cpython-cde2eadcf46c4cc993d18c8de7121bbb952a1372.tar.bz2
Fix another relative import.
Diffstat (limited to 'Lib/bsddb')
-rw-r--r--Lib/bsddb/dbutils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/bsddb/dbutils.py b/Lib/bsddb/dbutils.py
index 6dcfdd5..30b3cc7 100644
--- a/Lib/bsddb/dbutils.py
+++ b/Lib/bsddb/dbutils.py
@@ -26,7 +26,7 @@
#
from time import sleep as _sleep
-import db
+from . import db
# always sleep at least N seconds between retrys
_deadlock_MinSleepTime = 1.0/128