[Python-checkins] r46665 - python/trunk/Lib/bsddb/dbobj.py

tim.peters python-checkins at python.org
Mon Jun 5 03:47:47 CEST 2006


Author: tim.peters
Date: Mon Jun  5 03:47:24 2006
New Revision: 46665

Modified:
   python/trunk/Lib/bsddb/dbobj.py
Log:
Whitespace normalization.


Modified: python/trunk/Lib/bsddb/dbobj.py
==============================================================================
--- python/trunk/Lib/bsddb/dbobj.py	(original)
+++ python/trunk/Lib/bsddb/dbobj.py	Mon Jun  5 03:47:24 2006
@@ -92,8 +92,8 @@
     def log_archive(self, *args, **kwargs):
         return apply(self._cobj.log_archive, args, kwargs)
     if db.version() >= (4,0):
-      def log_stat(self, *args, **kwargs):
-          return apply(self._cobj.log_stat, args, kwargs)
+        def log_stat(self, *args, **kwargs):
+            return apply(self._cobj.log_stat, args, kwargs)
     def set_get_returns_none(self, *args, **kwargs):
         return apply(self._cobj.set_get_returns_none, args, kwargs)
 


More information about the Python-checkins mailing list