summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2008-11-20 14:36:16 +0000
committerNick Mathewson <nickm@torproject.org>2008-11-20 14:36:16 +0000
commit159b8af79ecbfdd10c885ae9b70bbb71f097c029 (patch)
tree34ff023735041d965aed9ff3acc2e724d887cb0c /lib
parentaae30118323dc298a2dc5629c2cafefc7c39691b (diff)
Unlike everything else in Python, registry keys want Close() not close().
git-svn-id: file:///home/or/svnrepo/updater/trunk@17337 55e972cd-5a19-0410-ae62-a4d7a52db4cd
Diffstat (limited to 'lib')
-rw-r--r--lib/thandy/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/thandy/util.py b/lib/thandy/util.py
index 88d07f4..ff617ae 100644
--- a/lib/thandy/util.py
+++ b/lib/thandy/util.py
@@ -128,4 +128,4 @@ def getRegistryValue(keyname):
return None
finally:
if settings is not None:
- settings.close()
+ settings.Close()