[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r17337: {updater} Unlike everything else in Python, registry keys want Close() (updater/trunk/lib/thandy)
Author: nickm
Date: 2008-11-20 09:36:16 -0500 (Thu, 20 Nov 2008)
New Revision: 17337
Modified:
updater/trunk/lib/thandy/util.py
Log:
Unlike everything else in Python, registry keys want Close() not close().
Modified: updater/trunk/lib/thandy/util.py
===================================================================
--- updater/trunk/lib/thandy/util.py 2008-11-20 14:25:29 UTC (rev 17336)
+++ updater/trunk/lib/thandy/util.py 2008-11-20 14:36:16 UTC (rev 17337)
@@ -128,4 +128,4 @@
return None
finally:
if settings is not None:
- settings.close()
+ settings.Close()