[Python-3000-checkins] r51349 - python/branches/p3yk/Lib/bsddb/dbutils.py

guido.van.rossum python-3000-checkins at python.org
Fri Aug 18 01:29:09 CEST 2006


Author: guido.van.rossum
Date: Fri Aug 18 01:29:08 2006
New Revision: 51349

Modified:
   python/branches/p3yk/Lib/bsddb/dbutils.py
Log:
Fix another relative import.


Modified: python/branches/p3yk/Lib/bsddb/dbutils.py
==============================================================================
--- python/branches/p3yk/Lib/bsddb/dbutils.py	(original)
+++ python/branches/p3yk/Lib/bsddb/dbutils.py	Fri Aug 18 01:29:08 2006
@@ -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


More information about the Python-3000-checkins mailing list